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)