Added Proxys will need these soon

This commit is contained in:
Gig 2015-04-23 20:29:26 +01:00
parent 4b7b9d4fd2
commit e889b00b6f
3 changed files with 16 additions and 2 deletions

View file

@ -2,6 +2,7 @@ package techreborn;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
@ -21,6 +22,7 @@ import techreborn.init.ModParts;
import techreborn.init.ModRecipes;
import techreborn.lib.ModInfo;
import techreborn.packets.PacketHandler;
import techreborn.proxies.CommonProxy;
import techreborn.util.LogHelper;
import techreborn.world.TROreGen;
@ -30,6 +32,9 @@ import java.io.File;
public class Core {
public static ConfigTechReborn config;
@SidedProxy(clientSide = ModInfo.CLIENT_PROXY_CLASS, serverSide = ModInfo.SERVER_PROXY_CLASS)
public static CommonProxy proxy;
@Mod.Instance
public static Core INSTANCE;
@ -53,7 +58,6 @@ public class Core {
ModParts.init();
// Recipes
ModRecipes.init();
//Compat
CompatManager.init(event);
// WorldGen

View file

@ -0,0 +1,5 @@
package techreborn.proxies;
public class ClientProxy extends CommonProxy{
}

View file

@ -0,0 +1,5 @@
package techreborn.proxies;
public class CommonProxy {
}