21 lines
551 B
C#
21 lines
551 B
C#
using Content.Shared.CCVar;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client._CP14.Options;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class CP14OptionsMenuMainTab : Control
|
|
{
|
|
public CP14OptionsMenuMainTab()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
Control.AddOptionCheckBox(CCVars.WaveShaderEnabled, WaveShaderEnabled);
|
|
Control.AddOptionCheckBox(CCVars.PostProcess, PostProcessCheckBox);
|
|
|
|
Control.Initialize();
|
|
}
|
|
}
|