Initial Commit with Torches. Missing LangKeys and Recipes

This commit is contained in:
2022-07-31 21:54:28 +02:00
commit ff4df5d59f
173 changed files with 2353 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package me.hypherionmc.hyperlighting;
import me.hypherionmc.hyperlighting.common.init.CommonRegistration;
import net.fabricmc.api.ModInitializer;
public class HyperLightingFabric implements ModInitializer {
@Override
public void onInitialize() {
CommonRegistration.registerAll();
}
}