Files

10 lines
208 B
C#
Raw Permalink Normal View History

2026-06-02 18:57:47 -04:00
using System.Collections;
namespace BracerLib.StateManagement.Interfaces
{
public interface IGameStateTriggerInvoker : IGameStateIdentifier
{
IEnumerator WaitForGameStateEvents();
}
}