mirror of
https://github.com/JonasunderscoreJones/nicer-skies.git
synced 2025-10-23 03:39:18 +02:00
13 lines
311 B
Java
13 lines
311 B
Java
package codes.ztereohype.example;
|
|
|
|
import codes.ztereohype.example.nebula.Skybox;
|
|
import net.fabricmc.api.ModInitializer;
|
|
|
|
public class ExampleMod implements ModInitializer {
|
|
public static Skybox nebulaSkybox;
|
|
public static boolean toggle = true;
|
|
|
|
@Override
|
|
public void onInitialize() {
|
|
}
|
|
}
|