cpw.mods.fml.common
Interface IFMLSidedHandler

All Known Implementing Classes:
FMLClientHandler, FMLServerHandler

public interface IFMLSidedHandler


Method Summary
 void adjustEntityLocationOnClient(EntitySpawnAdjustmentPacket entitySpawnAdjustmentPacket)
           
 void beginServerLoading(MinecraftServer server)
           
 void displayMissingMods(ModMissingPacket modMissingPacket)
           
 void finishServerLoading()
           
 List<String> getAdditionalBrandingInformation()
           
 MinecraftServer getServer()
           
 Side getSide()
           
 void haltGame(String message, Throwable exception)
           
 void sendPacket(Packet packet)
           
 void showGuiScreen(Object clientGuiElement)
           
 Entity spawnEntityIntoClientWorld(EntityRegistry.EntityRegistration registration, EntitySpawnPacket packet)
           
 

Method Detail

getAdditionalBrandingInformation

List<String> getAdditionalBrandingInformation()

getSide

Side getSide()

haltGame

void haltGame(String message,
              Throwable exception)

showGuiScreen

void showGuiScreen(Object clientGuiElement)

spawnEntityIntoClientWorld

Entity spawnEntityIntoClientWorld(EntityRegistry.EntityRegistration registration,
                                  EntitySpawnPacket packet)

adjustEntityLocationOnClient

void adjustEntityLocationOnClient(EntitySpawnAdjustmentPacket entitySpawnAdjustmentPacket)

beginServerLoading

void beginServerLoading(MinecraftServer server)

finishServerLoading

void finishServerLoading()

getServer

MinecraftServer getServer()

sendPacket

void sendPacket(Packet packet)

displayMissingMods

void displayMissingMods(ModMissingPacket modMissingPacket)