removed proxys
This commit is contained in:
parent
f6c0c8fa20
commit
7e3bc1e8df
3 changed files with 2 additions and 33 deletions
|
@ -1,13 +0,0 @@
|
|||
package dark.library;
|
||||
|
||||
|
||||
import cpw.mods.fml.client.registry.KeyBindingRegistry;
|
||||
|
||||
public class ClientProxy extends CommonProxy
|
||||
{
|
||||
@Override
|
||||
public void preInit()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
package dark.library;
|
||||
|
||||
public class CommonProxy
|
||||
{
|
||||
public void preInit()
|
||||
{
|
||||
|
||||
}
|
||||
public void init()
|
||||
{
|
||||
|
||||
}
|
||||
public void postInit()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue