use of com.microsoft.Malmo.Client.MalmoModClient 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);
}
}
Aggregations