1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-29 01:01:45 +02:00
GiantsTools/Giants.Launcher/WindowType.cs
2020-08-10 00:29:28 -07:00

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,
}
}