/* * Copyright (c) 2017 univento.eu - All rights reserved * You are not allowed to use, distribute or modify this code */ package eu.univento.impact.game; import lombok.Getter; import lombok.Setter; /** * @author joethei * @version 1.0 */ public enum GameState { Lobby, Warmup, Ingame; @Getter @Setter private static GameState state; }