Beispiel #1
0
 static void Main()
 {
     using (var game = new TestMatch3Game())
         game.Run();
 }
Beispiel #2
0
 public CoroutineManager(TestMatch3Game game)
 {
     _game           = game;
     _game.OnUpdate += Update;
     _coroutines     = new List <Coroutine>();
 }