Beispiel #1
0
 public void ToggleLoop()
 {
     if (CoreLoop.IsRunning)
     {
         CoreLoop.StopLoop();
     }
     else
     {
         CoreLoop.StartLoop();
     }
 }
Beispiel #2
0
 public void ShutDown()
 {
     CoreLoop.StopLoop();
 }
Beispiel #3
0
 public Game Init()
 {
     CoreLoop    = new CoreLoop();
     TileManager = new TileManager();
     return(_instance);
 }