Files
Warhound/WarhoundConsole/Program.cs

27 lines
443 B
C#

namespace WarhoundConsole
{
public class Program
{
public static int Main(string[] args)
{
try
{
MainInternal(args);
}
catch (Exception e)
{
Console.WriteLine(e);
return -1;
}
return 0;
}
private static void MainInternal(string[] args)
{
}
}
}