#Minesweeper
This is a simple Minesweeper game developed in Play and Scala. The application is end-to-end pure functional, which in other words mean, there is no database or no states maintained and no mutability in the backend. Frontend simply submits a panel state to backend and get a new one in response.
###How to run the application locally
- To run the game you will need typesafe's activator installed on your machine
- Using terminal go to the project directory and run command ./activator run
- To run the test cases run the command ./activator test
###More about the game