ui/richtext/RichTextClickRight.cs

A small RichTextPanel-derived component that defines styling and behavior for right-click hint text. It sets the input action to "aim", a yellow-ish color, and requests an icon to be prepended.

Reflection
[RichTextPanel( @"\b[Rr]ight-[Cc]lick\b" )]
public class RichTextClickRight : RichTextBase
{
	public override string Input => "aim";
	public override Color Color => new Color( 1f, 0.8f, 0.2f );

	public override bool PrependIcon => true;
}