forked from MoonsideGames/MoonWorks
add Quit method to Game
parent
3a6b73e637
commit
80f3711f4c
|
@ -109,6 +109,11 @@ namespace MoonWorks
|
|||
}
|
||||
}
|
||||
|
||||
public void Quit()
|
||||
{
|
||||
quit = true;
|
||||
}
|
||||
|
||||
protected abstract void Update(TimeSpan delta);
|
||||
protected abstract void Draw(double alpha);
|
||||
protected virtual void Destroy() {}
|
||||
|
|
Loading…
Reference in New Issue