skeleton: Cleaned up code and md

This commit is contained in:
2023-03-15 17:28:02 +11:00
parent dc6e1258b2
commit 5463debddf
9 changed files with 113 additions and 114 deletions

View File

@@ -8,24 +8,31 @@ package comp1110.ass2.skeleton;
*/
public class setup {
/**
* This method clears the board.
*/
public void clearBoard() {
}
/**
* This method creates the board, islands, and stone circles.
*/
public void boardSetup(){
public void boardSetup() {
}
/**
* This method creates a player.
*/
public void playerSetup(){
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.
* It will create 2-4 players, set up the board and assign the players their
* pieces.
*/
public static void main(String[] args) {
}