Files
crystall-punk-14/Content.Client/_CP14/Options/CP14OptionsMenuMainTab.xaml.cs

21 lines
581 B
C#
Raw Normal View History

2024-09-24 20:30:19 +10:00
using Content.Shared._CP14.Configuration;
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(CP14ConfigVars.WaveShaderEnabled, WaveShaderEnabled);
Control.AddOptionCheckBox(CP14ConfigVars.PostProcess, PostProcessCheckBox);
2024-09-24 20:30:19 +10:00
Control.Initialize();
}
}