예제 #1
0
파일: Game.cs 프로젝트: Pedlar/PacmanOgre
 public override bool keyPressed(KeyboardEvent evt)
 {
     if (evt.keysym.sym == 27)
     {
         ctx.getRoot().queueEndRendering();
     }
     return(true);
 }
예제 #2
0
파일: Game.cs 프로젝트: Pedlar/PacmanOgre
 public Root GetRoot() => _applicationContextBase.getRoot();