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