Testing out JmonkeyEngine to make a game in Scala with Akka Actors within a pure FP layer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
321 B

  1. package wow.doge.mygame.utils
  2. case class Display(
  3. width: Int = 640,
  4. height: Int = 480,
  5. title: String = "JME-Game",
  6. fullScren: Boolean = false,
  7. vsync: Boolean = false,
  8. frameRate: Int = -1
  9. )
  10. object Display {
  11. val default = Display()
  12. }
  13. case class GlobalSettings(display: Display = Display.default)