Files
comp1110-ass2/src/comp1110/ass2/skeleton/setup.java
Immanuel Alvaro Bhirawa 34781b79cf B-contribution signed
2023-03-19 20:51:14 +11:00

44 lines
873 B
Java

package comp1110.ass2.skeleton;
/**
* This class is used to set up the game.
* It creates and sets up the board.
* It then creates the players and their pieces.
*
*/
public class setup {
/**
* This method clears the board.
*/
public void clearBoard() {
}
/**
* This method creates the board, islands, and stone circles.
*/
public void boardSetup() {
}
/**
* This method creates a player.
*
* [added comment]
* According to the amount of players that play, set each of the players' different amount of villagers and settlers
*/
public void playerSetup() {
}
/**
* This method holds the startup code for the game.
* It will create 2-4 players, set up the board and assign the players their
* pieces.
*/
public static void main(String[] args) {
}
}