2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.proxy;
|
2014-12-03 21:55:53 +01:00
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.util.Util;
|
2014-12-03 21:55:53 +01:00
|
|
|
|
2015-02-09 17:25:05 +01:00
|
|
|
@SuppressWarnings("unused")
|
|
|
|
public class ServerProxy implements IProxy{
|
2014-12-03 21:55:53 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-09 17:25:05 +01:00
|
|
|
public void preInit(){
|
|
|
|
Util.logInfo("PreInitializing ServerProxy...");
|
2014-12-03 21:55:53 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-09 17:25:05 +01:00
|
|
|
public void init(){
|
|
|
|
Util.logInfo("Initializing ServerProxy...");
|
2014-12-03 21:55:53 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-09 17:25:05 +01:00
|
|
|
public void postInit(){
|
|
|
|
Util.logInfo("PostInitializing ServerProxy...");
|
2014-12-03 21:55:53 +01:00
|
|
|
}
|
|
|
|
}
|