diff --git a/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt b/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt index 8a5fdef..9750a30 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/data/config/Config.kt @@ -12,6 +12,7 @@ import java.util.* val file = File("./run/conf.properties") val prop = Properties() +//TODO: make them variables work :( //init values public val winW = prop.getProperty("winWidth") //public val WINDOW_WIDTH = winW.toInt() diff --git a/src/main/kotlin/group/ouroboros/potrogue/data/config/GameConfig.kt b/src/main/kotlin/group/ouroboros/potrogue/data/config/GameConfig.kt index 2456db9..0b02431 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/data/config/GameConfig.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/data/config/GameConfig.kt @@ -37,6 +37,4 @@ object GameConfig { .withTitle("$GAME_ID | $GAME_VER") .withIcon("assets/icon.png") .build() - - //TODO: Replace most of this with a json/yaml/whatever config file for the user to be able to edit. }