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