Files
marcer-gamedvd-launcher/MarcerGameDvdLauncher/UIErrorService.cs
T
2026-08-10 20:20:27 +02:00

12 lines
329 B
C#

namespace MarcerGameDvdLauncher;
/// <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);
}
}