KumiScript/gearbox/GameStateQuitting.cs

23 lines
433 B
C#
Raw Normal View History

namespace KumiScript.Gearbox
{
public class GameStateQuitting : GameState
{
public GameStateQuitting()
{
}
public override void AcceptMessage(StateMessage message)
{
return;
}
public override bool IsQuitting()
{
return true;
}
public override GameState UpdateState()
{
return this;
}
}
}