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