summary refs log tree commit diff stats
path: root/src/main/kotlin/net/fabricmc/example/ExampleMod.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/net/fabricmc/example/ExampleMod.kt')
-rw-r--r--src/main/kotlin/net/fabricmc/example/ExampleMod.kt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/net/fabricmc/example/ExampleMod.kt b/src/main/kotlin/net/fabricmc/example/ExampleMod.kt
new file mode 100644
index 0000000..aebbd4b
--- /dev/null
+++ b/src/main/kotlin/net/fabricmc/example/ExampleMod.kt
@@ -0,0 +1,12 @@
+package net.fabricmc.example
+
+
+@Suppress("unused")
+fun init() {
+    // 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.
+
+    println("Hello Fabric world!")
+}
+