skeleton: Added setup code

This commit is contained in:
Nathan Woodburn 2023-03-15 13:10:35 +11:00
parent d2fc9cc781
commit 5f287b43f3
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
2 changed files with 33 additions and 2 deletions

View File

@ -77,5 +77,4 @@ If one of:
## Board
* Islands (List of Islands)
* Stone Circles (List of Stone Circles)
* Stone Circles (List of Stone Circles)

View File

@ -0,0 +1,32 @@
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 creates the board, islands, and stone circles.
*/
public void boardSetup(){
}
/**
* This method creates a player.
*/
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) {
}
}