2018-12-07 08:22:15 +00:00
|
|
|
|
using RecrownedAthenaeum.Tools.CommandProcessor;
|
2018-12-05 21:44:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
2018-12-07 08:22:15 +00:00
|
|
|
|
namespace RecrownedAthenaeum.Tools
|
2018-12-05 21:44:26 +00:00
|
|
|
|
{
|
|
|
|
|
internal class ConsoleTools
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Recrowned Athenaeum Console Tools version " + Assembly.GetExecutingAssembly().GetName().Version.ToString());
|
|
|
|
|
bool running = true;
|
|
|
|
|
|
|
|
|
|
CommandEngine ce = new CommandEngine();
|
|
|
|
|
ce.Run();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|