mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-27 07:37:24 -04:00
22 lines
370 B
C++
22 lines
370 B
C++
|
|
|
|
#ifndef DUSK_IMGUI_MENU_RANDOMIZER_HPP
|
|
#define DUSK_IMGUI_MENU_RANDOMIZER_HPP
|
|
|
|
namespace dusk {
|
|
class ImGuiMenuRandomizer {
|
|
public:
|
|
ImGuiMenuRandomizer();
|
|
void draw();
|
|
|
|
void windowRandoStats();
|
|
void windowRandoGeneration();
|
|
|
|
private:
|
|
bool m_showRandoStats{true};
|
|
bool m_showRandoGeneration{false};
|
|
};
|
|
}
|
|
|
|
#endif //DUSK_IMGUI_MENU_RANDOMIZER_HPP
|