2020-08-10 09:22:33 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Giants.Launcher
|
|
|
|
|
{
|
|
|
|
|
public enum WindowType
|
2020-08-13 06:58:53 +02:00
|
|
|
|
{
|
|
|
|
|
Fullscreen = 0,
|
|
|
|
|
Windowed = 1,
|
|
|
|
|
Borderless = 2,
|
|
|
|
|
}
|
2020-08-10 09:22:33 +02:00
|
|
|
|
}
|