mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-10 08:29:29 +01:00
12 lines
311 B
C++
12 lines
311 B
C++
#pragma once
|
|
|
|
/// @brief Class for displaying a critical error message.
|
|
class ErrorDisplay
|
|
{
|
|
public:
|
|
/// @brief Displays the given \p errorString and loops.
|
|
/// @note This function does not return.
|
|
/// @param errorString The error string to display.
|
|
void PrintError(const char* errorString);
|
|
};
|