test impl of the new block atlas maker

This commit is contained in:
minjaesong
2019-03-01 01:20:07 +09:00
parent adcedaeba8
commit 4a9b003fe5
7 changed files with 252 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ object ModMgr {
}
}
/** Get a common file from all the installed mods. Files are guaranteed to exist. If a mod does not
/** Get a common file (literal file or directory) from all the installed mods. Files are guaranteed to exist. If a mod does not
* contain the file, the mod will be skipped. */
fun getFilesFromEveryMod(path: String): List<File> {
val path = path.sanitisePath()
@@ -189,7 +189,7 @@ object ModMgr {
return filesList.toList()
}
/** Get a common file from all the installed mods. Files are guaranteed to exist. If a mod does not
/** Get a common file (literal file or directory) from all the installed mods. Files are guaranteed to exist. If a mod does not
* contain the file, the mod will be skipped.
*
* Returning files are read-only. */