mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-04 22:35:37 +01:00
14 lines
191 B
C#
14 lines
191 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Giants.Launcher
|
|||
|
{
|
|||
|
public enum WindowType
|
|||
|
{
|
|||
|
Fullscreen = 0,
|
|||
|
Windowed = 1,
|
|||
|
Borderless = 2,
|
|||
|
}
|
|||
|
}
|