Coverage Summary for Class: GamePhase (it.polimi.ingsw.Model.Enums)
| Class | Class, % | Method, % | Line, % |
|---|---|---|---|
| GamePhase | 100% (1/1) | 100% (2/2) | 100% (2/2) |
1 package it.polimi.ingsw.Model.Enums; 2 3 import java.io.Serial; 4 import java.io.Serializable; 5 6 /** 7 * Represent the Phase of a turn. A turn can be in the {@link #SETUP} phase or in the {@link #ACTION} phase 8 */ 9 public enum GamePhase implements Serializable { 10 SETUP, ACTION; 11 @Serial 12 private static final long serialVersionUID = 120L; // convention: 1 for model, (01 -> 99) for objects 13 14 }