IRichTextPanel.cs

Interface for a rich text UI panel. Declares a ParseRichText method to parse/display formatted text and an optional ImageSize property to control image dimensions.

public interface IRichTextPanel
{
	public void ParseRichText( string text );
	public float? ImageSize { get; set; }
}