From b939530536ba5aa139d891a0890d5649163ccdec Mon Sep 17 00:00:00 2001 From: illyum Date: Fri, 20 Sep 2024 11:07:50 -0600 Subject: [PATCH] feat(platform): add platform header --- engine/src/platform/Platform.hpp | 3 +++ 1 file changed, 3 insertions(+) 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); }