summaryrefslogtreecommitdiff
path: root/src/main/scala/me/robbyzambito/othello/Main.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/me/robbyzambito/othello/Main.scala')
-rw-r--r--src/main/scala/me/robbyzambito/othello/Main.scala6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/scala/me/robbyzambito/othello/Main.scala b/src/main/scala/me/robbyzambito/othello/Main.scala
index 3158f10..d0d4b6f 100644
--- a/src/main/scala/me/robbyzambito/othello/Main.scala
+++ b/src/main/scala/me/robbyzambito/othello/Main.scala
@@ -1,9 +1,13 @@
package me.robbyzambito.othello
-import me.robbyzambito.othello.game.Game
+import me.robbyzambito.othello.game._
object Main extends App {
Game().loop()
+// Game.easy.loop()
+// Game.random.loop()
+// Game(List(AIPlayer(Position.WHITE), AIPlayer(Position.BLACK, -_.takenPositions.length))).loop()
+ //Game(List(AIPlayer(Position.WHITE, -_.takenPositions.length), AIPlayer(Position.BLACK, -_.takenPositions.length))).loop()
}