mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-07 12:56:31 +01:00
fe304041c5
- Better system for moving objects that want to receive light updates - LightProvider interface to better abstract light lookups - All light listeners use GridAlignedBBs - More utility in GridAlignedBB
39 lines
1.1 KiB
Java
39 lines
1.1 KiB
Java
package com.jozufozu.flywheel;
|
|
|
|
import com.jozufozu.flywheel.config.FlwCommands;
|
|
import com.jozufozu.flywheel.config.FlwConfig;
|
|
import com.jozufozu.flywheel.config.FlwPackets;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
import net.minecraftforge.fml.DistExecutor;
|
|
import net.minecraftforge.fml.common.Mod;
|
|
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
|
|
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
|
|
|
@Mod("flywheel")
|
|
public class Flywheel {
|
|
|
|
public static final String ID = "flywheel";
|
|
|
|
public Flywheel() {
|
|
FMLJavaModLoadingContext.get()
|
|
.getModEventBus()
|
|
.addListener(this::setup);
|
|
|
|
MinecraftForge.EVENT_BUS.addListener(FlwCommands::onServerStarting);
|
|
|
|
FlwConfig.init();
|
|
|
|
DistExecutor.unsafeRunWhenOn(Dist.CLIENT, () -> FlywheelClient::clientInit);
|
|
}
|
|
|
|
public static ResourceLocation rl(String path) {
|
|
return new ResourceLocation(ID, path);
|
|
}
|
|
|
|
private void setup(final FMLCommonSetupEvent event) {
|
|
FlwPackets.registerPackets();
|
|
}
|
|
}
|