Esempio n. 1
0
 public TetrisRogue()
 {
     game = new ZeplinGame();
     game.OnLoad += Load;
     game.OnUpdate += Update;
     game.Run();
 }
Esempio n. 2
0
 public Demo()
 {
     game = new ZeplinGame();
     //game.OnUpdate += DemoUpdateEveryFrame; //optionally inject custom code into the update call
     //game.OnLoad += LoadContent; //optionally inject custom code into the content load
     game.OnUpdate += UpdateImageTest;
     game.OnLoad += LoadImageTest;
     game.Run();
 }