mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 10:41:35 -06:00
13 lines
310 B
C++
13 lines
310 B
C++
#pragma once
|
|
|
|
class MessageWindow
|
|
{
|
|
public:
|
|
inline static bool s_isVisible = false;
|
|
|
|
static void Init();
|
|
static void Draw();
|
|
static bool Open(std::string text, int* result, std::span<std::string> buttons = {}, int defaultButtonIndex = 0, int cancelButtonIndex = 1);
|
|
static void Close();
|
|
};
|