Advertisement
Guest User

ClientProxy_Jamiga

a guest
Apr 12th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. package aJamigaPack1;
  2.  
  3. import java.util.Map;
  4.  
  5. import cpw.mods.fml.client.registry.RenderingRegistry;
  6. import net.minecraft.client.renderer.entity.RenderLiving;
  7. import net.minecraft.entity.Entity;
  8. import net.minecraft.util.ResourceLocation;
  9.  
  10. public class ClientProxy extends CommonProxy {
  11.  
  12. @Override
  13. public void registerRenderers() {
  14. // feel free to create a separate method, such as init() or whatever, if you do not want to lump
  15. // key bindings and other stuff together with all the render registration code
  16.  
  17. RegisterKeyBindings.init();
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement