NAK_CVR_Mods/Stickers/Integrations/BTKUI/UIAddon.Category.DebugOptions.cs
2024-08-25 06:31:47 -05:00

13 lines
No EOL
423 B
C#

using BTKUILib.UIObjects;
namespace NAK.Stickers.Integrations;
public static partial class BTKUIAddon
{
private static void Setup_DebugOptionsCategory()
{
Category debugCategory = _rootPage.AddMelonCategory(ModSettings.Hidden_Foldout_DebugCategory);
debugCategory.AddMelonToggle(ModSettings.Debug_NetworkInbound);
debugCategory.AddMelonToggle(ModSettings.Debug_NetworkOutbound);
}
}