public TextFormatting(Font font, Color color, TextOutline outline, TextShadow shadow) { Font = font; Color = color; Outline = outline; Shadow = shadow; }
protected bool Equals(TextOutline other) { return(Width == other.Width && Color.Equals(other.Color)); }