Add: complete javaDOC

This commit is contained in:
2026-06-10 11:43:58 +02:00
parent c099847cbd
commit e45a5bbb98
25 changed files with 429 additions and 616 deletions
@@ -19,11 +19,17 @@ import java.util.*;
*/
public class MiniModel implements Serializable {
/** Upper row of tribe cards currently on the board. */
public ArrayList<TribeCard> upperListTribeCards;
/** Lower row of tribe cards currently on the board. */
public ArrayList<TribeCard> lowerListTribeCards;
/** Upper row of building cards currently on the board. */
public ArrayList<BuildingCard> upperListBuildingCards;
/** Lower row of building cards currently on the board. */
public ArrayList<BuildingCard> lowerListBuildingCards;
/** Usernames of players currently disconnected from the game. */
public ArrayList<String> disconnectedPlayers;
/** The most recent network event applied to this model. */
public NetworkEvent lastEvent;
/**