19 lines
497 B
C#
19 lines
497 B
C#
|
using RecrownedAthenaeum.ConsoleTools.CommandProcessor;
|
|||
|
using System;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace RecrownedAthenaeum.ConsoleTools
|
|||
|
{
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|