Exemple #1
0
 public static string GetFontWeight(this ChatColor value)
 {
     return(value.GetAttributeOfType <ChatColorInfoAttribute>()?.FontWeight);
 }
Exemple #2
0
 public static string GetColorRgb(this ChatColor value)
 {
     return(value.GetAttributeOfType <ChatColorInfoAttribute>()?.Color);
 }
Exemple #3
0
 public static string GetTextDecoration(this ChatColor value)
 {
     return(value.GetAttributeOfType <ChatColorInfoAttribute>()?.TextDecoration);
 }
Exemple #4
0
 public static char GetChar(this ChatColor value)
 {
     return(value.GetAttributeOfType <ChatColorInfoAttribute>()?.Character ?? char.MinValue);
 }