Uses of Class
cpw.mods.fml.relauncher.Side

Packages that use Side
cpw.mods.fml.client   
cpw.mods.fml.common   
cpw.mods.fml.common.event   
cpw.mods.fml.common.network   
cpw.mods.fml.common.registry   
cpw.mods.fml.relauncher   
cpw.mods.fml.server   
 

Uses of Side in cpw.mods.fml.client
 

Methods in cpw.mods.fml.client that return Side
 Side FMLClientHandler.getSide()
           
 

Uses of Side in cpw.mods.fml.common
 

Methods in cpw.mods.fml.common that return Side
 Side FMLCommonHandler.getEffectiveSide()
          Return the effective side for the context in the game.
 Side IFMLSidedHandler.getSide()
           
 Side FMLCommonHandler.getSide()
           
 

Methods in cpw.mods.fml.common with parameters of type Side
static void ProxyInjector.inject(ModContainer mod, ASMDataTable data, Side side)
           
 void FMLCommonHandler.rescheduleTicks(Side side)
           
 void FMLCommonHandler.tickEnd(EnumSet<TickType> ticks, Side side, Object... data)
           
 void FMLCommonHandler.tickStart(EnumSet<TickType> ticks, Side side, Object... data)
           
 

Uses of Side in cpw.mods.fml.common.event
 

Methods in cpw.mods.fml.common.event that return Side
 Side FMLStateEvent.getSide()
           
 

Uses of Side in cpw.mods.fml.common.network
 

Methods in cpw.mods.fml.common.network with parameters of type Side
 void NetworkRegistry.registerChannel(IPacketHandler handler, String channelName, Side side)
           
 

Uses of Side in cpw.mods.fml.common.registry
 

Methods in cpw.mods.fml.common.registry with parameters of type Side
static void TickRegistry.registerScheduledTickHandler(IScheduledTickHandler handler, Side side)
           
static void TickRegistry.registerTickHandler(ITickHandler handler, Side side)
           
static void TickRegistry.updateTickQueue(List<IScheduledTickHandler> ticks, Side side)
           
 

Uses of Side in cpw.mods.fml.relauncher
 

Methods in cpw.mods.fml.relauncher that return Side
static Side Side.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Side[] Side.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Side in cpw.mods.fml.server
 

Methods in cpw.mods.fml.server that return Side
 Side FMLServerHandler.getSide()