use of com.microsoft.Malmo.Server.MalmoModServer in project malmo by Microsoft.
the class MalmoMod method init.
@EventHandler
public void init(FMLInitializationEvent event) {
if (event.getSide().isClient()) {
this.client = new MalmoModClient();
this.client.init(event);
}
if (event.getSide().isServer()) {
this.server = new MalmoModServer();
this.server.init(event);
}
}
use of com.microsoft.Malmo.Server.MalmoModServer in project malmo by Microsoft.
the class MalmoMod method initIntegratedServer.
public void initIntegratedServer(MissionInit minit) {
// Will replace any existing server objects.
this.server = new MalmoModServer();
this.server.init(minit);
}
Aggregations