mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
19 lines
798 B
C#
19 lines
798 B
C#
|
namespace Giants.Launcher
|
|||
|
{
|
|||
|
public class SettingKeys
|
|||
|
{
|
|||
|
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";
|
|||
|
}
|
|||
|
}
|