lsfg-vk/include/utils/gui.hpp
2025-07-18 17:26:08 +02:00

14 lines
242 B
C++

#pragma once
#include <string>
namespace Utils {
///
/// Display error gui and exit
///
/// @param message The error message to display in the GUI.
///
[[noreturn]] void showErrorGui(const std::string& message);
}