Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/ui/reddog/windows/exports_window.cpp
Hyper 2f68ee5df2 Implemented mock reddog window manager
Requires micross.ttf font in game root and ENABLE_IM_FONT_ATLAS_SNAPSHOT undefined, not currently in the font atlas.
2025-01-17 20:14:50 +00:00

20 lines
780 B
C++

#include "exports_window.h"
#include <ui/reddog/reddog_controls.h>
#include <user/config.h>
static ExportsWindow g_window{ "Exports" };
void ExportsWindow::Draw()
{
if (Begin())
{
ImGui::TextColored({ 1, 0, 0, 1 }, "For testing purposes only, use Hedge Mod Manager to toggle these.");
Reddog::Checkbox("Allow Cancelling Unleash", &Config::AllowCancellingUnleash.Value);
Reddog::Checkbox("Fix Unleash Out of Control Drain", &Config::FixUnleashOutOfControlDrain.Value);
Reddog::Checkbox("Homing Attack on Boost", &Config::HomingAttackOnBoost.Value);
Reddog::Checkbox("Save Score at Checkpoints", &Config::SaveScoreAtCheckpoints.Value);
Reddog::Checkbox("Skip Intro Logos", &Config::SkipIntroLogos.Value);
}
End();
}