blob: de38128338d41558aff5dc68b51114d5b75a61aa [file] [log] [blame] [raw]
package li.cil.oc.server
import cpw.mods.fml.common.event.FMLInitializationEvent
import cpw.mods.fml.common.network.NetworkRegistry
import li.cil.oc.OpenComputers
import li.cil.oc.common.{Proxy => CommonProxy}
private[oc] class Proxy extends CommonProxy {
override def init(e: FMLInitializationEvent) = {
super.init(e)
NetworkRegistry.INSTANCE.registerGuiHandler(OpenComputers, GuiHandler)
}
}