Files

8 lines
141 B
C#
Raw Permalink Normal View History

2026-06-02 18:57:47 -04:00
namespace BracerLib.StateManagement.Interfaces
{
public interface IGameStateIdentifier
{
GameState State { get; }
}
}