Updated 'Board' class.

Updated the 'Board' class by adding the 'addPlayerData' method to it.
This commit is contained in:
Daniel Grigencha
2024-12-02 00:42:07 +01:00
parent c1280ba089
commit 4b6b12c0ac

View File

@@ -33,6 +33,17 @@ public Board() {
}
}
/**
* This method will be used to add the given color and playerData parameters to the playerData attribute of
* Board class.
*
* @param color as the color of the player as a Color enumeration.
* @param playerData as the playerData of the player as a PlayerData object.
*/
public void addPlayerData(Color color, PlayerData playerData) {
this.playerData.put(color, playerData);
}
/**
* This method returns the playerData
*