summary refs log tree commit diff stats
path: root/src/main/kotlin/net
diff options
context:
space:
mode:
authornatanfudge <natan.lifsiz@gmail.com>2019-07-27 11:36:27 +0300
committernatanfudge <natan.lifsiz@gmail.com>2019-07-27 11:36:27 +0300
commitdfcc029c91454fd9d157c30f524f23c1a0e99ed5 (patch)
tree45ebc50566882780e4c642471f8e71ff37d714f5 /src/main/kotlin/net
first commit
Diffstat (limited to 'src/main/kotlin/net')
-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!")
+}
+