NAK_CVR_Mods/Stickers/Integrations/BTKUI/BtkUiAddon_CAT_DebugOptions.cs
2024-08-22 20:53:37 -05:00

15 lines
No EOL
493 B
C#

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