Coverage Summary for Class: CharacterType (it.polimi.ingsw.gc14.Model.Cards.TribeCards)

Class Class, % Method, % Line, %
CharacterType 100% (1/1) 100% (2/2) 100% (7/7)


 package it.polimi.ingsw.gc14.Model.Cards.TribeCards;
 
  /**
  * Represents the different types of character cards available in the game.
  */
 public enum CharacterType {
 
      /**
       * Character card representing an Inventor.
       */
     INVENTOR,
 
      /**
       * Character card representing a Builder.
       */
      BUILDER,
 
      /**
       * Character card representing a Gatherer.
       */
      GATHERER,
 
      /**
       * Character card representing an Artist.
       */
      ARTIST,
 
      /**
       * Character card representing a Shaman.
       */
      SHAMAN,
 
      /**
       * Character card representing a Hunter.
       */
      HUNTER
 }