namespace Game { public interface IState { void OnCreate(); void OnUpdate(); void OnDestroy(); } }