Files
Progetto-ingegneria-del-sof…/src/main/java/it/polimi/ingsw/gc14/Model/Totems.java
T

32 lines
374 B
Java

package it.polimi.ingsw.gc14.Model;
/**
* Represents the different totem colors available in the game.
*/
public enum Totems {
/**
* Yellow totem.
*/
YELLOW,
/**
* Blue totem.
*/
BLUE,
/**
* Orange totem.
*/
ORANGE,
/**
* White totem.
*/
WHITE,
/**
* Purple totem.
*/
PURPLE
}