Example #1
0
 public static ChatText NewFancyText(string prefix, TextAttribute color, ChatText text)
 {
     return(new ChatText(prefix, color)
     {
         Next = text
     });
 }
Example #2
0
 public static ChatText NewFancyText(string prefix, TextAttribute color, string text)
 {
     return(NewFancyText(prefix, color, new ChatText(text, TextColor.Reset)));
 }