summaryrefslogtreecommitdiff
path: root/src/main/kotlin/Constants.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/Constants.kt')
-rw-r--r--src/main/kotlin/Constants.kt27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/kotlin/Constants.kt b/src/main/kotlin/Constants.kt
new file mode 100644
index 0000000..a1903ce
--- /dev/null
+++ b/src/main/kotlin/Constants.kt
@@ -0,0 +1,27 @@
+package moe.nea.ultranotifier
+
+
+object Constants {
+ const val MOD_ID = "ultranotifier"
+ const val VERSION = "1.0.0"
+
+ enum class Platform {
+ FORGE, FABRIC
+ }
+
+ val PLATFORM: Platform =
+//#if FORGE
+//$$ Platform.FORGE
+//#else
+ Platform.FABRIC
+//#endif
+
+ const val MINECRAFT_VERSION: String =
+//#if MC == 10809
+//$$ "1.8.9"
+//#elseif MC == 12006
+ "1.20.6"
+//#elseif MC == 11404
+//$$ "1.14.4"
+//#endif
+}