2019-09-03 08:34:02 +02:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
|
|
|
import com.simibubi.create.modules.schematics.ClientSchematicLoader;
|
|
|
|
import com.simibubi.create.modules.schematics.client.SchematicAndQuillHandler;
|
|
|
|
import com.simibubi.create.modules.schematics.client.SchematicHandler;
|
|
|
|
import com.simibubi.create.modules.schematics.client.SchematicHologram;
|
|
|
|
|
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
|
|
|
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
|
|
|
|
import net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus;
|
|
|
|
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
|
|
|
|
|
|
|
|
@EventBusSubscriber(value = Dist.CLIENT, bus = Bus.MOD)
|
|
|
|
public class CreateClient {
|
|
|
|
|
|
|
|
public static ClientSchematicLoader schematicSender;
|
|
|
|
public static SchematicHandler schematicHandler;
|
|
|
|
public static SchematicHologram schematicHologram;
|
|
|
|
public static SchematicAndQuillHandler schematicAndQuillHandler;
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public static void clientInit(FMLClientSetupEvent event) {
|
|
|
|
schematicSender = new ClientSchematicLoader();
|
|
|
|
schematicHandler = new SchematicHandler();
|
|
|
|
schematicHologram = new SchematicHologram();
|
2019-09-03 23:03:52 +02:00
|
|
|
schematicAndQuillHandler = new SchematicAndQuillHandler();
|
2019-09-03 08:34:02 +02:00
|
|
|
|
|
|
|
AllKeys.register();
|
|
|
|
AllContainers.registerScreenFactories();
|
|
|
|
AllTileEntities.registerRenderers();
|
|
|
|
AllItems.registerColorHandlers();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void gameTick() {
|
|
|
|
schematicSender.tick();
|
|
|
|
schematicAndQuillHandler.tick();
|
|
|
|
schematicHandler.tick();
|
|
|
|
schematicHologram.tick();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|