namespace Robust.Client.UserInterface.Controllers; /// /// Interface implemented by s /// /// The state type public interface IOnStateEntered where T : State.State { /// /// Called by /// on s that implement this method when a state /// of the specified type is entered /// /// The state that was entered void OnStateEntered(T state); }