basic command system and argument processing added.

This commit is contained in:
2018-12-08 16:26:40 -06:00
parent 901f900527
commit 6c37b11e07
4 changed files with 86 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
using RecrownedAthenaeum.Tools.CommandProcessor;
using System;
using System.Collections.Generic;
using System.Text;
namespace RecrownedAthenaeum.Tools.TextureAtlasTools
{
class TexturePackerCommand : ICommandEngineCommand
{
public void Run(string[] arguments)
{
throw new NotImplementedException();
}
}
}