mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 05:46:26 +01:00
16 lines
387 B
Java
16 lines
387 B
Java
|
package com.jozufozu.flywheel;
|
||
|
|
||
|
import com.jozufozu.flywheel.backend.Backend;
|
||
|
import com.jozufozu.flywheel.core.AtlasStitcher;
|
||
|
|
||
|
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||
|
|
||
|
public class Client {
|
||
|
|
||
|
public static void clientInit() {
|
||
|
|
||
|
Backend.init();
|
||
|
FMLJavaModLoadingContext.get().getModEventBus().addListener(AtlasStitcher.getInstance()::onTextureStitch);
|
||
|
}
|
||
|
}
|