mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
18 lines
739 B
C#
18 lines
739 B
C#
namespace Giants.Launcher
|
|
{
|
|
public static class RegistryKeys
|
|
{
|
|
public const string Antialiasing = "Antialiasing";
|
|
public const string AnisotropicFiltering = "AnisotropicFiltering";
|
|
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";
|
|
}
|
|
}
|