diff --git a/common/net/minecraftforge/common/ISpawnHandler.java b/common/net/minecraftforge/common/ISpawnHandler.java deleted file mode 100644 index c4e148fb3..000000000 --- a/common/net/minecraftforge/common/ISpawnHandler.java +++ /dev/null @@ -1,28 +0,0 @@ -package net.minecraftforge.common; - -import java.io.DataInputStream; -import java.io.DataOutputStream; -import java.io.IOException; - -/** - * A interface for Entities that need extra information to be communicated - * between the server and client when they are spawned. - */ -public interface ISpawnHandler -{ - /** - * Called by the server when constructing the spawn packet. - * Data should be added to the provided stream. - * - * @param data The packet data stream - */ - public void writeSpawnData(DataOutputStream data) throws IOException; - - /** - * Called by the client when it receives a Entity spawn packet. - * Data should be read out of the stream in the same way as it was written. - * - * @param data The packet data stream - */ - public void readSpawnData(DataInputStream data) throws IOException; -}