Files
crystall-punk-14/Content.Client/_CP14/Options/CP14OptionsMenuMainTab.xaml.cs
Ed 66058ffc49 Auto CBT (#997)
* auto doggy

* fix

* fix
2025-03-09 23:29:20 +03:00

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();
}
}