summary refs log tree commit diff stats
path: root/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin')
-rw-r--r--src/main/kotlin/ChatPrivacy.kt8
-rw-r--r--src/main/kotlin/net/fabricmc/example/ExampleMod.kt13
2 files changed, 8 insertions, 13 deletions
diff --git a/src/main/kotlin/ChatPrivacy.kt b/src/main/kotlin/ChatPrivacy.kt
new file mode 100644
index 0000000..89f1f7f
--- /dev/null
+++ b/src/main/kotlin/ChatPrivacy.kt
@@ -0,0 +1,8 @@
+package ganarchy.chatprivacy
+
+// For support join https://discord.gg/v6v4pMv
+
+@Suppress("unused")
+fun init() {
+}
+
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!")
-}
-