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