2023-01-31 13:12:58 +03:00
|
|
|
package ru.magistu.siegemachines.server;
|
|
|
|
|
|
|
|
import net.minecraftforge.eventbus.api.IEventBus;
|
|
|
|
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
|
2025-03-03 22:16:00 +11:00
|
|
|
import ru.magistu.siegemachines.proxy.IProxy;
|
2023-01-31 13:12:58 +03:00
|
|
|
|
2025-03-03 22:16:00 +11:00
|
|
|
public class ServerProxy implements IProxy {
|
|
|
|
public void setup(IEventBus modEventBus, IEventBus forgeEventBus) {
|
|
|
|
}
|
2023-01-31 13:12:58 +03:00
|
|
|
|
2025-03-03 22:16:00 +11:00
|
|
|
public void clientSetup(FMLClientSetupEvent event) {
|
|
|
|
}
|
2023-01-31 13:12:58 +03:00
|
|
|
|
2025-03-03 22:16:00 +11:00
|
|
|
public void onPreInit() {
|
|
|
|
}
|
2023-01-31 13:12:58 +03:00
|
|
|
}
|