mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-04 14:25:37 +01:00
19 lines
806 B
C#
19 lines
806 B
C#
namespace Giants.Launcher
|
|
{
|
|
public static class RegistryKeys
|
|
{
|
|
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";
|
|
}
|
|
}
|