diff --git a/src/main/java/it/polimi/ingsw/gc14/Model/Player.java b/src/main/java/it/polimi/ingsw/gc14/Model/Player.java index 0f74820..a9fac03 100644 --- a/src/main/java/it/polimi/ingsw/gc14/Model/Player.java +++ b/src/main/java/it/polimi/ingsw/gc14/Model/Player.java @@ -95,19 +95,27 @@ public class Player { public ArrayList hunters; /** - * The current amount of {@code food} the Player possesses. + * The current amount of {@code Food} the Player possesses. */ private int FoodValue; /** * Getter for the private attribute {@link #FoodValue}. - * @return {@code int} - The amount of food the player possesses. + * @return {@code int} - The amount of Food the player possesses. */ public int getFoodValue() { return FoodValue; } + /** + * The current amount of {@code Prestige} the Player possesses. + */ private int PrestigeValue; + + /** + * Getter for the private attribute {@link #PrestigeValue}. + * @return {@code int} - The amount of Prestige the player possesses. + */ public int getPrestigeValue() { return PrestigeValue; }