Added missing summeries #2

This commit is contained in:
Michel Fedde 2021-03-18 10:13:43 +01:00
parent 31777faa11
commit c8db1ce8bc
26 changed files with 261 additions and 36 deletions

View file

@ -1,9 +1,24 @@
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
}
}