Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.chef.mod.proxy;
- import com.chef.mod.init.MyBlocks;
- import com.chef.mod.renderer.MilkBarrelRenderer;
- import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
- import cpw.mods.fml.client.registry.RenderingRegistry;
- public class ClientProxy extends CommonProxy {
- public static int milkBarrelRenderType;
- public void registerProxies() {
- }
- public static void setCustomRenderers() {
- milkBarrelRenderType = RenderingRegistry.getNextAvailableRenderId();
- RenderingRegistry.registerBlockHandler(new MilkBarrelRenderer());
- }
- }
Add Comment
Please, Sign In to add comment