mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-21 07:59:22 +01:00
15 lines
367 B
C#
15 lines
367 B
C#
using OtterGui.Text;
|
|
|
|
namespace Penumbra.UI.Tabs.Debug;
|
|
|
|
public static class DebugConfigurationDrawer
|
|
{
|
|
public static void Draw()
|
|
{
|
|
using var id = ImUtf8.CollapsingHeaderId("Debug Logging Options"u8);
|
|
if (!id)
|
|
return;
|
|
|
|
ImUtf8.Checkbox("Log IMC File Replacements"u8, ref DebugConfiguration.WriteImcBytesToLog);
|
|
}
|
|
}
|