mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:45:39 +00:00
Expose the WindowBorder property.
This commit is contained in:
parent
d54fde57b1
commit
7010395b96
|
@ -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 ---
|
||||||
|
|
Loading…
Reference in a new issue