Now capable of saving and loading stages

This commit is contained in:
dalyjame
2019-07-06 22:12:47 -04:00
parent 8e7937b3c6
commit 07df031670
8 changed files with 220 additions and 46 deletions

View File

@@ -9,7 +9,8 @@ case class Config(
val resistMult: Double,
val weakMult: Double,
val immuneMult: Double,
val maxBoost: Int
val maxBoost: Int,
val tileSize: Int
) {
}
@@ -24,4 +25,5 @@ object Config {
def weakMult = config.weakMult
def immuneMult = config.immuneMult
def maxBoost = config.maxBoost
def tileSize = config.tileSize
}