// // Created by illyum on 9/20/2024. // #pragma once #include 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); }