mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-04 03:12:48 -04:00
24 lines
425 B
C++
24 lines
425 B
C++
#pragma once
|
|
|
|
namespace dusk {
|
|
class ImGuiPreLaunchWindow {
|
|
private:
|
|
int m_CurMenu = 0;
|
|
bool m_IsFirstDraw = true;
|
|
std::string m_initialGraphicsBackend;
|
|
|
|
bool isSelectedPathValid() const;
|
|
|
|
public:
|
|
ImGuiPreLaunchWindow();
|
|
void draw();
|
|
|
|
void drawMainMenu();
|
|
void drawOptions();
|
|
|
|
std::string m_selectedIsoPath;
|
|
std::string m_errorString;
|
|
bool m_isPal = false;
|
|
};
|
|
} // namespace dusk
|