mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 22:31:11 +00:00
Added WindowBorder enum.
This commit is contained in:
parent
fef112ab46
commit
0e2b89c369
25
Source/OpenTK/WindowBorder.cs
Normal file
25
Source/OpenTK/WindowBorder.cs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace OpenTK
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Enumerates available window borders.
|
||||||
|
/// </summary>
|
||||||
|
public enum WindowBorder
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically.
|
||||||
|
/// </summary>
|
||||||
|
Resizable = 0,
|
||||||
|
/// <summary>
|
||||||
|
/// The window has a fixed border. A window with a fixed border can only be resized programmatically.
|
||||||
|
/// </summary>
|
||||||
|
Fixed,
|
||||||
|
/// <summary>
|
||||||
|
/// The window does not have a border. A window with a hidden border can only be resized programmatically.
|
||||||
|
/// </summary>
|
||||||
|
Hidden
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue