ui/richtext/RichTextBulletSpread.cs

A small RichText panel class used by the UI rich text system. It declares a RichTextPanel attribute to match text like 'Bullet Spread' and overrides TextOverride to return the literal 'shot spread'.

[RichTextPanel( @"\b[Bb]ullet [Ss]pread\b" )]
public class RichTextBulletSpread : RichTextBase
{
	//public override string ImagePath => "textures/ui/bullet-icon.png";
	//public override bool PrependIcon => true;
	public override string TextOverride => "shot spread";
}