18 lines
443 B
C#
18 lines
443 B
C#
using RecrownedAthenaeum.Tools.CommandProcessor;
|
|
using System;
|
|
using System.Reflection;
|
|
|
|
namespace RecrownedAthenaeum.Tools
|
|
{
|
|
internal class Tools
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Recrowned Athenaeum Console Tools version " + Assembly.GetExecutingAssembly().GetName().Version.ToString());
|
|
|
|
CommandEngine ce = new CommandEngine();
|
|
ce.Run();
|
|
}
|
|
}
|
|
}
|