using System; using System.Collections.Generic; using System.Linq; using System.Text; //Contact Katinka at ka.m.kalkman@gmail.com, if there are any questions class GameModeHandler : GameObject { public enum GameMode { Menu, Single, Host, Join, IP, HighScore} GameMode currentMode; public GameModeHandler(int layer = 0, string id = ""): base(layer, id) { // } public GameMode CurrentGameMode { set { currentMode = value; } get { return currentMode; } } }