refactor
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user