package portables.client.core; import cpw.mods.fml.client.registry.RenderingRegistry; import portables.client.network.ClientPacketHandler; import portables.client.render.CustomRenderFallingSand; import portables.common.core.CommonProxy; import portables.common.core.SimplePortables; import portables.common.entity.CustomEntityFallingSand; public class ClientProxy extends CommonProxy { @Override public void initClient() { SimplePortables.channel.register(new ClientPacketHandler()); RenderingRegistry.registerEntityRenderingHandler(CustomEntityFallingSand.class, new CustomRenderFallingSand()); } }