IQ.Pilot Release Commit @ 0b96bd5

This commit is contained in:
IQ.Lvbs CI [bot]
2026-09-02 16:46:45 -05:00
parent 4fb3da761f
commit 7745f48100
162 changed files with 12835 additions and 9476 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include <functional>
#include <string>
namespace MessageBox {
void information(const std::string &title, const std::string &text, std::function<void()> on_close = nullptr);
void warning(const std::string &title, const std::string &text, const std::string &detailed_text = "",
std::function<void()> on_close = nullptr);
void question(const std::string &title, const std::string &text, std::function<void(bool ok)> on_result);
void draw();
}