Expose the WindowBorder property.

This commit is contained in:
the_fiddler 2008-04-21 20:29:40 +00:00
parent d54fde57b1
commit 7010395b96

View file

@ -945,6 +945,25 @@ namespace OpenTK
#endregion #endregion
#region public WindowBorder WindowBorder
/// <summary>
/// Gets or states the border of the GameWindow.
/// </summary>
public WindowBorder WindowBorder
{
get
{
return glWindow.WindowBorder;
}
set
{
glWindow.WindowBorder = value;
}
}
#endregion
#endregion #endregion
#region --- GameWindow Timing --- #region --- GameWindow Timing ---