This is a scala swing project. The application is a user interface for minesweeper game. It connects to a running minesweeper game with actor configuration.
The configuration for the connection to a running minesweeper core actor system
is located in src/main/resources/application.conf
under
akka {
...
minesweeper {
systemName = "minesweeper-gui"
controllerActor = "akka.tcp://[email protected]:5555/user/controller"
publisherActor = "akka.tcp://[email protected]:5555/user/publisher"
}
}
Run this using sbt.
sbt run
The main class for running this application ist named GuiMinesweeperMain
.