Added a hero to the game who can move around and animates

This commit is contained in:
James Daly
2019-07-18 22:24:56 -04:00
parent 32542df86c
commit c10da7ccf9
7 changed files with 135 additions and 4 deletions

View File

@@ -10,7 +10,9 @@ case class Config(
val weakMult: Double,
val immuneMult: Double,
val maxBoost: Int,
val tileSize: Int
val tileSize: Int,
val moveSpeed: Double,
val yOffset: Int
) {
}
@@ -26,4 +28,6 @@ object Config {
def immuneMult = config.immuneMult
def maxBoost = config.maxBoost
def tileSize = config.tileSize
def moveSpeed = config.moveSpeed
def yOffset = config.yOffset
}