Renamed AppLoader into App

This commit is contained in:
minjaesong
2021-09-09 09:48:33 +09:00
parent c3dd005fb2
commit 8f834fe869
116 changed files with 796 additions and 850 deletions

View File

@@ -9,8 +9,8 @@ import net.torvald.terrarum.langpack.Lang
object ErrorDisp : Screen {
private val logoTex = AppLoader.logo
private val font = AppLoader.fontGame
private val logoTex = App.logo
private val font = App.fontGame
var title = Lang["ERROR_GENERIC_TEXT"]
@@ -25,7 +25,7 @@ object ErrorDisp : Screen {
private val titleTextLeftMargin = 8
private val titleText = "${AppLoader.GAME_NAME} ${AppLoader.getVERSION_STRING()}"
private val titleText = "${App.GAME_NAME} ${App.getVERSION_STRING()}"
override fun show() {