aboutsummaryrefslogtreecommitdiff
path: root/fabric/src/main/kotlin/moe
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2022-07-26 11:42:48 +0200
committernea <romangraef@gmail.com>2022-07-26 11:42:48 +0200
commit37218614c6d7f8a903b6532196dfa7d1e94a948f (patch)
treef3ab92298b23ac839eaa84b3af1c769adfa52fda /fabric/src/main/kotlin/moe
parent372eec27e5e0c8ef796ed9e6bcdc68a10df84718 (diff)
downloadfirmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.tar.gz
firmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.tar.bz2
firmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.zip
legacy tag parsing and transformation
Diffstat (limited to 'fabric/src/main/kotlin/moe')
-rw-r--r--fabric/src/main/kotlin/moe/nea/notenoughupdates/FabricMain.kt10
1 files changed, 10 insertions, 0 deletions
diff --git a/fabric/src/main/kotlin/moe/nea/notenoughupdates/FabricMain.kt b/fabric/src/main/kotlin/moe/nea/notenoughupdates/FabricMain.kt
new file mode 100644
index 0000000..918100b
--- /dev/null
+++ b/fabric/src/main/kotlin/moe/nea/notenoughupdates/FabricMain.kt
@@ -0,0 +1,10 @@
+package moe.nea.notenoughupdates
+
+import moe.nea.notenoughupdates.NotEnoughUpdates.init
+import net.fabricmc.api.ModInitializer
+
+class FabricMain : ModInitializer {
+ override fun onInitialize() {
+ init()
+ }
+}