initial commit

This commit is contained in:
2026-08-10 19:37:10 +02:00
commit 3701761539
21 changed files with 1646 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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);
}
}