Coverage Summary for Class: ActionType (it.polimi.ingsw.Client.GUI)

Class Class, % Method, % Line, %
ActionType 0% (0/1) 0% (0/2) 0% (0/2)


1 package it.polimi.ingsw.Client.GUI; 2  3 /** 4  * Enum used to represent islandFieldPanel's status 5  * <p>MOVESTUDENT --> islandFieldPanel is waiting for user to click on an island to move the student from playerBoard</p> 6  * <p>MOVEMOTHERNATURE --> islandFieldPanel is waiting for user to click on an island to move motherNature</p> 7  * <p>CHARACTERCARD --> islandFieldPanel is waiting for user to click on an island to apply selected characterCard's effect</p> 8  */ 9 public enum ActionType { 10  11  MOVESTUDENT, MOVEMOTHERNATURE, CHARACTERCARD 12 }