Please note! These changes have not yet been tested on POSIX platforms (mac OR linux) so please do not expect them to work!
18 lines
275 B
C++
18 lines
275 B
C++
//
|
|
// Created by illyum on 9/20/2024.
|
|
//
|
|
|
|
#include "../Platform.hpp"
|
|
#include <pch.hpp>
|
|
|
|
namespace Platform {
|
|
|
|
void ShowPopup(const char* message) {
|
|
std::string command = "zenity --info --text=\"";
|
|
command += message;
|
|
command += "\"";
|
|
system(command.c_str());
|
|
}
|
|
|
|
}
|