smrendererv3/SMCode/SM.Base/Window/WindowFlags.cs
2021-03-18 10:13:43 +01:00

24 lines
No EOL
608 B
C#

namespace SM.Base.Window
{
/// <summary>
/// Flags how the window is shown.
/// </summary>
public enum WindowFlags
{
/// <summary>
/// As default window.
/// </summary>
Window = 0,
/// <summary>
/// As a borderless window.
/// <para>
/// WARNING! This automaticly fits the window to the screen and is not movable.
/// </para>
/// </summary>
BorderlessWindow = 2,
/// <summary>
/// Contents are shown in fullscreen.
/// </summary>
ExclusiveFullscreen = 1
}
}