View difference between Paste ID: ziJYxtrB and rpHX8VQV
SHOW: | | - or go back to the newest paste.
1
package net.minecraft.src;
2
3
import cpw.mods.fml.common.registry.EntityRegistry;
4
5
public class TinyProxy {
6
	public void registerRenderStuff() {
7
		//
8
	}
9
10
	public void registerEntity(Class<? extends Entity> entity, String entityName, int id, Object mod, int trackingRange, int updateFrequency, boolean sendsVelocityUpdates) {
11
		EntityRegistry.registerGlobalEntityID(entity, entityName, EntityRegistry.findGlobalUniqueEntityId());
12
		EntityRegistry.registerModEntity(entity, entityName, id, mod, trackingRange, updateFrequency, sendsVelocityUpdates);
13
	}
14
15
	public void registerEventBusses() {
16
		//
17
	}
18
19
	public World getClientWorld() {
20
		return null;
21
	}
22
23
	public EntityPlayer getClientPlayer() {
24
		return null;
25
	}
26
27
	public void sendToServer(Packet packet) {
28
		//
29
	}
30
31
	public void spawnParticle(Object entityFX) {
32
		//
33
	}
34
35
	public boolean isClient() {
36
		return false;
37
	}
38
}