IsoEngine/engine/src/platform/Platform.hpp

15 lines
310 B
C++
Raw Normal View History

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