Files
marcer-gamedvd-launcher/HatariZipLauncher/UIErrorService.cs
T
2026-08-10 19:37:10 +02:00

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);
}
}