1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-28 01:42:14 +02:00
GiantsTools/Giants.Launcher/WindowType.cs

10 lines
142 B
C#
Raw Normal View History

namespace Giants.Launcher
{
public enum WindowType
2020-08-13 06:58:53 +02:00
{
Fullscreen = 0,
Windowed = 1,
Borderless = 2,
}
}