Files
2026-06-02 18:57:47 -04:00

14 lines
356 B
C#

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