mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
17 lines
188 B
Java
17 lines
188 B
Java
|
package ellpeck.thingycraft.proxy;
|
||
|
|
||
|
public class ServerProxy implements IProxy{
|
||
|
|
||
|
public void preInit() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public void init() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public void postInit() {
|
||
|
|
||
|
}
|
||
|
}
|