CommonProxy.java 414 B

12345678910111213141516171819202122232425
  1. package me.km;
  2. import net.minecraft.client.renderer.entity.model.BipedModel;
  3. public class CommonProxy
  4. {
  5. public void init()
  6. {
  7. //MinecraftForge.EVENT_BUS.register(new CustomEventCaller());
  8. }
  9. public void postInit()
  10. {
  11. }
  12. public BipedModel getCylinderModel()
  13. {
  14. return null;
  15. }
  16. public BipedModel getStrawHatModel()
  17. {
  18. return null;
  19. }
  20. }