aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-09-07 22:36:13 +0800
committershedaniel <daniel@shedaniel.me>2020-09-07 22:36:13 +0800
commit34058443cc569e4b9a7dce014cd256cce79682b6 (patch)
treec142253edca8baf555a2279c0c366a1acfa5f73a /src/main/java
parent5533e1734362ab93248ebc6d0b67f2806cc5a53a (diff)
downloadRoughlyEnoughItems-34058443cc569e4b9a7dce014cd256cce79682b6.tar.gz
RoughlyEnoughItems-34058443cc569e4b9a7dce014cd256cce79682b6.tar.bz2
RoughlyEnoughItems-34058443cc569e4b9a7dce014cd256cce79682b6.zip
Forge port
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java b/src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java
new file mode 100644
index 000000000..f2387276c
--- /dev/null
+++ b/src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java
@@ -0,0 +1,16 @@
+package me.shedaniel.rei;
+
+import net.minecraftforge.eventbus.api.SubscribeEvent;
+import net.minecraftforge.fml.common.Mod;
+import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
+import org.jetbrains.annotations.ApiStatus;
+
+@Mod("roughlyenoughitems")
+@ApiStatus.Internal
+@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)
+public class RoughlyEnoughItems {
+ @SubscribeEvent
+ public static void onSetup(FMLCommonSetupEvent event) {
+ new RoughlyEnoughItemsInit();
+ }
+}