From 34058443cc569e4b9a7dce014cd256cce79682b6 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Mon, 7 Sep 2020 22:36:13 +0800 Subject: Forge port --- src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/me/shedaniel/rei/RoughlyEnoughItems.java (limited to 'src/main/java') 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(); + } +} -- cgit