using System; using Gwen.Control; namespace Gwen.ControlInternal { /// /// Drag & drop highlight. /// public class Highlight : Base { /// /// Initializes a new instance of the class. /// /// Parent control. public Highlight(Base parent) : base(parent) { } /// /// Renders the control using specified skin. /// /// Skin to use. protected override void Render(Skin.Base skin) { skin.DrawHighlight(this); } } }