예제 #1
0
 internal void SendGumpSelect(int triggerId)
 {
     lock (gumpLock)
     {
         try
         {
             infusionApi.GumpResponse()
             .Trigger(new GumpControlId((uint)triggerId));
             nextTriggerId = null;
         }
         catch (GumpException ex)
         {
             console.Debug(ex.ToString());
         }
     }
 }