Created a builder for making maps

This commit is contained in:
dalyjame
2019-07-03 21:57:20 -04:00
parent adef7235f1
commit 8e7937b3c6
9 changed files with 545 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
package fmon.util
object Direction extends Enumeration {
val North, Northeast, East, Southeast, South, Southwest, West, Northwest = Value
val cardinals = Set(North, East, South, West)
}