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 32785a0..89e268a 100644 --- a/src/main/java/it/polimi/ingsw/gc14/Model/Player.java +++ b/src/main/java/it/polimi/ingsw/gc14/Model/Player.java @@ -59,14 +59,39 @@ public class Player { case GATHERER -> gatherers.size(); }; } - + /** + * The List containing all {@link BuildingCard Building Cards} the player currently posses. + */ public ArrayList buildingCards; + /** + * The List containing all {@link Artist Artist Character Cards} the player currently posses. + */ public ArrayList artists; + + /** + * The List containing all {@link Builder Builder Character Cards} the player currently posses. + */ public ArrayList builders; + + /** + * The List containing all {@link Inventor Inventor Character Cards} the player currently posses. + */ public ArrayList inventors; + + /** + * The List containing all {@link Gatherer Gatherer Character Cards} the player currently posses. + */ public ArrayList gatherers; + + /** + * The List containing all {@link Shaman Shaman Character Cards} the player currently posses. + */ public ArrayList shamans; + + /** + * The List containing all {@link Hunter Hunter Character Cards} the player currently posses. + */ public ArrayList hunters; private int FoodValue;