static public int PauseGame(IntPtr l)
 {
     try {
         GameModeBase self = (GameModeBase)checkSelf(l);
         self.PauseGame();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }