Example #1
0
 public void GP(object source, GPEvent args)
 {
     if (args.currentState == "A")
     {
         mNextLine = true;
     }
 }
Example #2
0
 protected virtual void onGPInput(string gp)
 {
     if (gp != null)
     {
         GPEvent args = new GPEvent(gp);
         GPMenu(this, args);
     }
 }
Example #3
0
 public void GP(object source, GPEvent args)
 {
     if (args.currentState == "A")
     {
         restart();
     }
     if (args.currentState == "B")
     {
         Exit();
     }
 }