summaryrefslogtreecommitdiff
path: root/src/dialogues/LegacyDialogues.h
blob: 7f6097d25d91932c2992eb00136a57db64ea7ca9 (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) {}