Added missing summeries #2
This commit is contained in:
parent
31777faa11
commit
c8db1ce8bc
26 changed files with 261 additions and 36 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue