summaryrefslogtreecommitdiff
path: root/src/main/kotlin/Constants.kt
blob: a1903cecfc4765e712fbf4275c9481fffe81b304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}