mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2025-10-30 07:01:10 +00:00
14 lines
242 B
C++
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);
|
|
|
|
}
|