diff options
Diffstat (limited to 'src/main/kotlin/net/fabricmc/example')
-rw-r--r-- | src/main/kotlin/net/fabricmc/example/ExampleMod.kt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/kotlin/net/fabricmc/example/ExampleMod.kt b/src/main/kotlin/net/fabricmc/example/ExampleMod.kt deleted file mode 100644 index f011df7..0000000 --- a/src/main/kotlin/net/fabricmc/example/ExampleMod.kt +++ /dev/null @@ -1,13 +0,0 @@ -package net.fabricmc.example - -// For support join https://discord.gg/v6v4pMv - -@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!") -} - |