skeleton: Added setup code
This commit is contained in:
parent
d2fc9cc781
commit
5f287b43f3
@ -77,5 +77,4 @@ If one of:
|
|||||||
|
|
||||||
## Board
|
## Board
|
||||||
* Islands (List of Islands)
|
* Islands (List of Islands)
|
||||||
* Stone Circles (List of Stone Circles)
|
* Stone Circles (List of Stone Circles)
|
||||||
|
|
32
src/comp1110/ass2/skeleton/setup.java
Normal file
32
src/comp1110/ass2/skeleton/setup.java
Normal 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) {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user