mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
22 lines
469 B
Java
22 lines
469 B
Java
package ellpeck.actuallyadditions.proxy;
|
|
|
|
import ellpeck.actuallyadditions.util.Util;
|
|
|
|
@SuppressWarnings("unused")
|
|
public class ServerProxy implements IProxy{
|
|
|
|
@Override
|
|
public void preInit(){
|
|
Util.logInfo("PreInitializing ServerProxy...");
|
|
}
|
|
|
|
@Override
|
|
public void init(){
|
|
Util.logInfo("Initializing ServerProxy...");
|
|
}
|
|
|
|
@Override
|
|
public void postInit(){
|
|
Util.logInfo("PostInitializing ServerProxy...");
|
|
}
|
|
}
|