Add: complete JavaDoc for networking, heartbeat, totem flow and game events

This commit is contained in:
MatteoPellegrino05
2026-05-18 18:52:29 +02:00
parent 07e7028ac9
commit e28e7bab6d
26 changed files with 890 additions and 199 deletions
@@ -1,5 +1,32 @@
package it.polimi.ingsw.gc14.Model;
/**
* Represents the different totem colors available in the game.
*/
public enum Totems {
YELLOW, BLUE, ORANGE, WHITE, PURPLE
/**
* Yellow totem.
*/
YELLOW,
/**
* Blue totem.
*/
BLUE,
/**
* Orange totem.
*/
ORANGE,
/**
* White totem.
*/
WHITE,
/**
* Purple totem.
*/
PURPLE
}