package net.minecraft.src; import cpw.mods.fml.common.registry.EntityRegistry; public class TinyProxy { public void registerRenderStuff() { // } public void registerEntity(Class entity, String entityName, int id, Object mod, int trackingRange, int updateFrequency, boolean sendsVelocityUpdates) { EntityRegistry.registerGlobalEntityID(entity, entityName, EntityRegistry.findGlobalUniqueEntityId()); EntityRegistry.registerModEntity(entity, entityName, id, mod, trackingRange, updateFrequency, sendsVelocityUpdates); } public void registerEventBusses() { // } public World getClientWorld() { return null; } public EntityPlayer getClientPlayer() { return null; } public void sendToServer(Packet packet) { // } public void spawnParticle(Object entityFX) { // } public boolean isClient() { return false; } }