feat(platform): add platform header

This commit is contained in:
illyum 2024-09-20 11:07:50 -06:00
parent baf933569b
commit b939530536

View File

@ -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);
}