From 5e673375d40d790a0124010c514f15dd6b7d7982 Mon Sep 17 00:00:00 2001 From: tymmkang Date: Sun, 7 Dec 2025 04:13:40 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=88=EC=99=B8=20=EB=B0=9C=EC=83=9D?= =?UTF-8?q?=EC=8B=9C=20=EC=97=90=EB=9F=AC=EC=BD=94=EB=93=9C=20=EC=B6=9C?= =?UTF-8?q?=EB=A0=A5=20=EA=B0=80=EB=8A=A5=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WarhoundConsole/Program.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WarhoundConsole/Program.cs b/WarhoundConsole/Program.cs index c000392..096f9b8 100644 --- a/WarhoundConsole/Program.cs +++ b/WarhoundConsole/Program.cs @@ -3,7 +3,7 @@ namespace WarhoundConsole { public class Program { - public static void Main(string[] args) + public static int Main(string[] args) { try { @@ -12,7 +12,10 @@ namespace WarhoundConsole catch (Exception e) { Console.WriteLine(e); + return -1; } + + return 0; } private static void MainInternal(string[] args)