blob: a60490500a417b97bd533924839cff6b2eef5182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
//Legacy blocking prompts
//This are not implemented here, but rather in the engine bootstrapper
bool ConfirmUI(std::string title, std::string message, std::string confirmText) {}
void ErrorUI(std::string title, std::string message) {}
void InformationUI(std::string title, std::string message) {}
std::string MessagePromptUI(std::string title, std::string message, std::string text, std::string placeholder) {}
|