recrownedathenaeum/RecrownedAthenaeum.ConsoleTools/Tools.cs

20 lines
567 B
C#
Raw Normal View History

using RecrownedAthenaeum.Tools.CommandProcessor;
using RecrownedAthenaeum.Tools.TextureAtlasTools;
using System;
using System.Reflection;
namespace RecrownedAthenaeum.Tools
{
2018-12-07 08:27:34 +00:00
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.commands.Add("TexturePacker", new TexturePackerCommand());
ce.Run();
}
}
}