Goose game is a game where two or more players move pieces around a track by rolling a die. The aim of the game is to reach square number sixty-three before any of the other players and avoid obstacles.
- If you don't have it, download and install Eclipse (https://www.eclipse.org/downloads/)
- In the Eclipse menu, choose File -> Import
- Expand the General folder and select Existing Projects into Workspace, then click Next
- Select the folder you want to import (the GooseGame project)
- Click finish
- If you don't have it, install open jdk. From terminal: sudo apt-get install openjdk-8-jdk
- Using cd command navigate to the "main" package folder. The path should be something similar to GooseGame/appClientModule/main
- To compile the program type the next command in the terminal: javac -cp ../ Main.java
- To run the program type the next command in the terminal: java -cp ../ main/Main