Coverage Summary for Class: GameMode (it.polimi.ingsw.Model.Enums)
| Class | Class, % | Method, % | Line, % |
|---|---|---|---|
| GameMode | 100% (1/1) | 100% (2/2) | 100% (3/3) |
1 package it.polimi.ingsw.Model.Enums; 2 3 import java.io.Serial; 4 import java.io.Serializable; 5 6 /** 7 * Represents the game mode of the game. Can be either {@link #SIMPLE} or {@link #ADVANCED} 8 */ 9 public enum GameMode implements Serializable { 10 SIMPLE, 11 ADVANCED; 12 @Serial 13 private static final long serialVersionUID = 119L; // convention: 1 for model, (01 -> 99) for objects 14 }