2020-08-13 08:02:36 +02:00
|
|
|
|
namespace Giants.Launcher
|
|
|
|
|
{
|
2020-09-14 09:11:32 +02:00
|
|
|
|
public static class RegistryKeys
|
2020-08-13 08:02:36 +02:00
|
|
|
|
{
|
|
|
|
|
public const string Antialiasing = "Antialiasing";
|
|
|
|
|
public const string AnisotropicFiltering = "AnisotropicFiltering";
|
|
|
|
|
public const string BorderlessWindow = "BorderlessWindow";
|
|
|
|
|
public const string GameOptionsVersion = "GameOptionsVersion";
|
|
|
|
|
public const string NoAutoUpdate = "NoAutoUpdate";
|
|
|
|
|
public const string Renderer = "Renderer";
|
|
|
|
|
public const string TripleBuffering = "TripleBuffering";
|
|
|
|
|
public const string VerticalSync = "VerticalSync";
|
|
|
|
|
public const string VideoWidth = "VideoWidth";
|
|
|
|
|
public const string VideoHeight = "VideoHeight";
|
|
|
|
|
public const string VideoDepth = "VideoDepth";
|
|
|
|
|
public const string Windowed = "Windowed";
|
|
|
|
|
}
|
|
|
|
|
}
|