mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-02-05 11:28:32 -06:00
15 lines
304 B
C++
15 lines
304 B
C++
#pragma once
|
|
|
|
#include <api/SWA.h>
|
|
|
|
struct InstallerWizard
|
|
{
|
|
static inline bool s_isVisible = false;
|
|
static inline bool s_returnToTitle = false;
|
|
|
|
static void Init();
|
|
static void Draw();
|
|
static void Shutdown();
|
|
static bool Run(std::filesystem::path installPath, bool skipGame);
|
|
};
|