ui/richtext/RichTextPlayer.cs

A small UI rich text component class used by the RichText system. It declares a RichTextPanel attribute with a regex matching the word "Player" or "Players" and sets a default color of white.

[RichTextPanel( @"\b[Pp]layers?\b" )]
public class RichTextPlayer : RichTextBase
{
	public override Color Color => new Color( 1f, 1f, 1f );
}