20 lines
497 B
C#
20 lines
497 B
C#
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.Initialize();
|
|
}
|
|
}
|