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
cd3a577285
commit
bb2dee8d26
|
@ -945,6 +945,25 @@ namespace OpenTK
|
|||
|
||||
#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
|
||||
|
||||
#region --- GameWindow Timing ---
|
||||
|
|
Loading…
Reference in a new issue