This commit is contained in:
2021-04-27 19:33:47 -04:00
parent ca452cbff9
commit a4a9a1f76d
25 changed files with 62 additions and 75 deletions
@@ -0,0 +1,18 @@
package me.parsell.glowstonewire;
import me.parsell.glowstonewire.core.glowBlocks;
import me.parsell.glowstonewire.core.glowItems;
import net.fabricmc.api.ModInitializer;
public class GlowstoneWire implements ModInitializer {
@Override
public void onInitialize() {
// This code runs as soon as Minecraft is in a mod-load-ready state.
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
System.out.println("Hello Fabric world!");
glowBlocks.init();
glowItems.init();
}
}