15 lines
310 B
C++
15 lines
310 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);
|
||
|
}
|