24 lines
394 B
C#
24 lines
394 B
C#
|
|
namespace WarhoundConsole
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
MainInternal(args);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine(e);
|
|
}
|
|
}
|
|
|
|
private static void MainInternal(string[] args)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|