44 lines
873 B
Java
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) {
|
|
}
|
|
}
|
|
|