mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
12 lines
325 B
C#
12 lines
325 B
C#
namespace HatariZipLauncher;
|
|
|
|
/// <summary>
|
|
/// Centralized service for error and user message output in the console UI.
|
|
/// </summary>
|
|
public class UIErrorService
|
|
{
|
|
public void ShowError(string message)
|
|
{
|
|
ProgramHelpers.ShowConsoleMessage([message], ConsoleColor.Red, clear: false, waitForKey: true);
|
|
}
|
|
} |