Coverage Summary for Class: Totems (it.polimi.ingsw.gc14.Model)

Class Class, % Method, % Line, %
Totems 100% (1/1) 100% (2/2) 100% (6/6)


 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
 }