Guest User

Untitled

a guest
Apr 6th, 2020
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.mod.adrium.proxy;
  2.  
  3. import com.mod.adrium.Reference;
  4. import com.mod.adrium.init.ItemMod;
  5.  
  6. import net.minecraft.client.resources.model.ModelResourceLocation;
  7. import net.minecraftforge.client.model.ModelLoader;
  8.  
  9. public class ClientProxy extends CommonProxy
  10. {
  11. public void preInit()
  12. {
  13. super.preInit();
  14. ItemMod.registerRenders();
  15. }
  16.  
  17. public void init()
  18. {
  19. super.init();
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment