Exemplo n.º 1
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Network.Send(new PPrompt_Cancel_ASCII(this.m_Serial, this.m_Prompt));
     }
 }
Exemplo n.º 2
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Engine.AddTextMessage("Hue creation canceled.");
     }
 }
Exemplo n.º 3
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Network.Send(new PPrompt_Cancel_Unicode(this.m_Serial, this.m_Prompt));
     }
 }
Exemplo n.º 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));
 }
Exemplo n.º 5
0
 public void OnCancel(PromptCancelType type)
 {
     if (type == PromptCancelType.UserCancel)
     {
         Engine.AddTextMessage("Hue creation canceled.");
     }
 }