removed proxys

This commit is contained in:
Robert Seifert 2013-04-27 01:40:06 -04:00
parent f6c0c8fa20
commit 7e3bc1e8df
3 changed files with 2 additions and 33 deletions

View file

@ -1,13 +0,0 @@
package dark.library;
import cpw.mods.fml.client.registry.KeyBindingRegistry;
public class ClientProxy extends CommonProxy
{
@Override
public void preInit()
{
}
}

View file

@ -1,17 +0,0 @@
package dark.library;
public class CommonProxy
{
public void preInit()
{
}
public void init()
{
}
public void postInit()
{
}
}

View file

@ -26,11 +26,10 @@ public class DarkMain
FMLClientHandler.instance().getClient().effectRenderer.addEffect(new FXBeam(world, position, target, color.getRed(), color.getGreen(), color.getBlue(), age));
}
@SidedProxy(clientSide = "dark.library.ClientProxy", serverSide = "dark.library..CommonProxy")
public static CommonProxy proxy;
public void init()
{
proxy.preInit();
}
}