mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-06 19:50:33 -06:00
22 lines
938 B
C++
22 lines
938 B
C++
#include "exports_window.h"
|
|
#include <ui/reddog/reddog_controls.h>
|
|
#include <user/config.h>
|
|
|
|
static ExportsWindow g_window;
|
|
|
|
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("Disable Auto Save Warning", &Config::DisableAutoSaveWarning.Value);
|
|
Reddog::Checkbox("Disable DLC Icon", &Config::DisableDLCIcon.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();
|
|
}
|