2024-09-20 10:44:12 -06:00
|
|
|
//
|
|
|
|
// Created by illyum on 9/20/2024.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <pch.hpp>
|
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
void ShowPopup(const char *message);
|
2024-09-20 11:07:50 -06:00
|
|
|
|
2024-09-20 10:44:12 -06:00
|
|
|
void ShowPopup(const char *title, const char *message);
|
2024-09-20 11:07:50 -06:00
|
|
|
|
2024-09-20 10:44:12 -06:00
|
|
|
void ShowPopup(const std::string &message);
|
2024-09-20 11:07:50 -06:00
|
|
|
|
2024-09-20 10:44:12 -06:00
|
|
|
void ShowPopup(const std::string &title, const std::string &message);
|
|
|
|
}
|