mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-06-21 23:42:57 +00:00
15 lines
303 B
C++
15 lines
303 B
C++
#pragma once
|
|
|
|
struct OptionsMenu
|
|
{
|
|
public:
|
|
inline static bool s_isVisible = false;
|
|
inline static bool s_isDimBackground = false;
|
|
|
|
static void Init();
|
|
static void Draw();
|
|
static void Open(bool stage = false);
|
|
static void Close(bool stage = false);
|
|
|
|
static bool CanClose();
|
|
};
|