Esempio n. 1
0
 private void MainLoop(MonoGameImGuiBootstrap obj)
 {
     if (_app.MainLoop())
     {
         _bootstrap.Exit();
     }
 }
Esempio n. 2
0
 public Program(string[] args)
 {
     _bootstrap = new MonoGameImGuiBootstrap(
         InitialWindowWidth,
         InitialWindowHeight,
         Initialize);
     _bootstrap.MainLoop = MainLoop;
 }
Esempio n. 3
0
 private void Initialize(MonoGameImGuiBootstrap bootstrap)
 {
     _app = new App(bootstrap);
 }