textures work now lol
This commit is contained in:
@@ -1,29 +1,13 @@
|
||||
package me.parsell.glowstonewire;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
import me.parsell.glowstonewire.core.glowBlocks;
|
||||
import me.parsell.glowstonewire.core.glowItems;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.minecraft.util.math.Direction;
|
||||
|
||||
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();
|
||||
|
||||
String[] states = {"none", "broke", "side", "up"};
|
||||
//for(int i = 0; i < 4; i++)
|
||||
// for (int j = 0; j < 4; j++)
|
||||
// for (int k = 0; k < 4; k++)
|
||||
// for (int l = 0; l < 4; l++)
|
||||
// System.out.println("north: " + states[i] + " south: " + states[j] + " east: " + states[k] + " west: " + states[l]);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user