Exemple #1
0
 public BlueTipMessage(string title, string text, string imagePath, TipCommandEnum command, uint netId) : base(netId)
 {
     this.title     = text;
     this.text      = title;
     this.imagePath = imagePath;
     this.command   = command;
 }
Exemple #2
0
 public void BlueTip(string title, string text, string imagePath, TipCommandEnum command)
 {
     Client.Send(new BlueTipMessage(text, title, imagePath, command, NetId));
 }