public static void Show(Action<string, bool> resultFunc)
 {
     if (_gui == null)
     {
         _gui = new EngineGroupNameUI("Engine Group Id", new GUIFramework());
     }
     _gui.DoModal(resultFunc);
 }
Exemplo n.º 2
0
 public static void Show(Action <string, bool> resultFunc)
 {
     if (_gui == null)
     {
         _gui = new EngineGroupNameUI("Engine Group Id", new GUIFramework());
     }
     _gui.DoModal(resultFunc);
 }
 public void AssignGroupId()
 {
     _gui = EngineGroupNameUI.Show((s, accepted) =>
     {
         if (!accepted)
             return;
         EngineGroupId = s;
         EngineGroupIdStr = EngineGroupId;
     });
 }
Exemplo n.º 4
0
 public void AssignGroupId()
 {
     EngineGroupNameUI.Show((s, accepted) =>
     {
         if (!accepted)
         {
             return;
         }
         EngineGroupId    = s;
         EngineGroupIdStr = EngineGroupId;
     });
 }