skeleton: Added scoring class

This commit is contained in:
Nathan Woodburn 2023-03-15 13:43:31 +11:00
parent aaa6dabe94
commit 2e32c07d95
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -0,0 +1,42 @@
package comp1110.ass2.skeleton;
/**
* This class is used to score the game
*
*/
public class scoring {
/**
* This method is used to score the islands
*/
public void scoreIslands(){
}
/**
* This method is used to score the piece links
*/
public void scoreLinks(){
}
/**
* This method is used to score the owner of the island
*/
public void scoreMajorities(){
}
/**
* This method is used to score the resources
*/
public void scoreResources(){
}
/**
* This method is used to score the statuettes
*/
public void scoreStatuettes(){
}
}