Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 990 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 990 Bytes

GooseGame

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.

Compile and run with an IDE

  1. If you don't have it, download and install Eclipse (https://www.eclipse.org/downloads/)
  2. In the Eclipse menu, choose File -> Import
  3. Expand the General folder and select Existing Projects into Workspace, then click Next
  4. Select the folder you want to import (the GooseGame project)
  5. Click finish

Compile and run from terminal (Linux)

  1. If you don't have it, install open jdk. From terminal: sudo apt-get install openjdk-8-jdk
  2. Using cd command navigate to the "main" package folder. The path should be something similar to GooseGame/appClientModule/main
  3. To compile the program type the next command in the terminal: javac -cp ../ Main.java
  4. To run the program type the next command in the terminal: java -cp ../ main/Main