namespace State.GameStateMachine { public class Paused : GameState { public override void OnExit() { throw new System.NotImplementedException(); } public override void Update() { throw new System.NotImplementedException(); } } }