18 lines
313 B
C++
18 lines
313 B
C++
//
|
|
// Created by illyum on 9/20/2024.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <pch.hpp>
|
|
|
|
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);
|
|
}
|