using System;
using Gwen.Control;
namespace Gwen.ControlInternal
{
///
/// Divider menu item.
///
public class MenuDivider : Base
{
///
/// Initializes a new instance of the class.
///
/// Parent control.
public MenuDivider(Base parent)
: base(parent)
{
Height = 1;
}
///
/// Renders the control using specified skin.
///
/// Skin to use.
protected override void Render(Skin.Base skin)
{
skin.DrawMenuDivider(this);
}
}
}