diff --git a/engine/src/platform/Platform.hpp b/engine/src/platform/Platform.hpp index 1baeecc..8420fb4 100644 --- a/engine/src/platform/Platform.hpp +++ b/engine/src/platform/Platform.hpp @@ -8,7 +8,10 @@ namespace Platform { void ShowPopup(const char *message); + void ShowPopup(const char *title, const char *message); + void ShowPopup(const std::string &message); + void ShowPopup(const std::string &title, const std::string &message); }