15 lines
313 B
C#
15 lines
313 B
C#
namespace State.GameStateMachine
|
|
{
|
|
public class Paused : GameState
|
|
{
|
|
public override void OnExit()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void Update()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |