Exemple #1
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Network.Send(new PPrompt_Cancel_ASCII(this.m_Serial, this.m_Prompt));
     }
 }
Exemple #2
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Engine.AddTextMessage("Hue creation canceled.");
     }
 }
Exemple #3
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Network.Send(new PPrompt_Cancel_Unicode(this.m_Serial, this.m_Prompt));
     }
 }
Exemple #4
0
 public void OnCancel(PromptCancelType type)
 {
     if (type != PromptCancelType.UserCancel)
     {
         return;
     }
     Network.Send((Packet) new PPrompt_Cancel_ASCII(this.m_Serial, this.m_Prompt));
 }
Exemple #5
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Engine.AddTextMessage("Hue creation canceled.");
     }
 }