Added a configuration file for seting up parameters

This commit is contained in:
dalyjame
2019-06-16 14:17:52 -04:00
parent b6fc98f44e
commit a475126a3f
15 changed files with 63 additions and 20 deletions

View File

@@ -6,6 +6,7 @@ import javafx.scene.{control => jfxsc}
import scalafx.Includes._
import scalafx.scene.control._
import fmon._
import fmon.stat.Monster
import fmon.stat._

View File

@@ -1,12 +1,5 @@
package fmon
import scala.language.implicitConversions
import scala.util.Random
import fmon.util._
package object battle {
implicit def rngDice(rng : Random) = new Dice(rng)
implicit def int2Helper(x : Int) = new IntFraction(x)
}