using BracerLib.Utility; namespace BracerLib.StateManagement { /// /// Representation of a GameState enum that can be expanded without issue /// and into other classes of a base GameState. /// public class GameState : Enumeration { public GameState(int id, string name) : base(id, name) { } } }