cpw.mods.fml.common.registry
Interface IEntityAdditionalSpawnData


public interface IEntityAdditionalSpawnData

A interface for Entities that need extra information to be communicated between the server and client when they are spawned.


Method Summary
 void readSpawnData(com.google.common.io.ByteArrayDataInput data)
          Called by the client when it receives a Entity spawn packet.
 void writeSpawnData(com.google.common.io.ByteArrayDataOutput data)
          Called by the server when constructing the spawn packet.
 

Method Detail

writeSpawnData

void writeSpawnData(com.google.common.io.ByteArrayDataOutput data)
Called by the server when constructing the spawn packet. Data should be added to the provided stream.

Parameters:
data - The packet data stream

readSpawnData

void readSpawnData(com.google.common.io.ByteArrayDataInput data)
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.

Parameters:
data - The packet data stream