32 lines
374 B
Java
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
|
|
} |