Fix set compresion, added nbt and snbt(wip) lib

This commit is contained in:
2026-09-05 16:35:55 +08:00
parent 60324028ee
commit 5e6e0ca5b9
56 files changed
+1064 -544

No files matched your search

+4 -3
View File
@@ -7,8 +7,9 @@ includeSubModule(":common")
includeSubModule(":mcping")
includeSubModule(":rconlib")
includeSubModule(":protocol")
//includeSubModule(":nbt")
includeSubModule(":nbt")
includeSubModule(":snbt")
fun includeSubModule(name: String) = include(name).also {
project(name).projectDir = file("libmc-${name.removePrefix(":")}")
fun includeSubModule(name: String, path: String? = null) = include(name).also {
project(name).projectDir = file(path ?: "libmc-${name.removePrefix(":")}")
}