26 std::string Message, Title;
31 void RenderMessageWindow(
void)
33 std::string _Message = Message;
34 std::string _Title = Title;
38 point WindowSize = window.GetSize();
40 window.CreateText({0,0}, window.GetSize(), _Message);
47 case KSYS_EVENT_REDRAW:
50 case KSYS_EVENT_BUTTON:
51 unsigned button = UI::buttons::GetPressedButton();
66 void MessageBox(
const std::string& _Message,
const std::string& _Title)
void MessageBox(const std::string &_Message, const std::string &_Title)
Создать окно с сообщением
Definition childWindow.hpp:66