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);
|
2025-01-12 14:33:06 +04:00
|
|
|
|
Control.AddOptionCheckBox(CP14ConfigVars.PostProcess, PostProcessCheckBox);
|
2024-09-24 20:30:19 +10:00
|
|
|
|
|
|
|
|
|
|
Control.Initialize();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|