示例#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();