Advertisement
gottabadfeeling

Paper Mario Mod 1.8 - Client Side Proxy Class

Apr 18th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package com.gottabadfeeling.mod.papermario.proxy;
  2.  
  3. import com.gottabadfeeling.mod.papermario.init.PaperMarioBlocks;
  4. import com.gottabadfeeling.mod.papermario.init.PaperMarioItems;
  5.  
  6. public class ClientProxy extends CommonProxy {
  7.    
  8.     @Override
  9.     public void registerRenders()
  10.     {
  11.         PaperMarioItems.registerRenders();
  12.         PaperMarioBlocks.registerRenders();
  13.     }
  14.    
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement