continued refactor.
This commit is contained in:
@@ -7,10 +7,6 @@ namespace RecrownedAthenaeum.Tools.CommandProcessor
|
||||
internal class CommandEngine
|
||||
{
|
||||
public bool running;
|
||||
public void Process(string command)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
internal void Run()
|
||||
{
|
||||
@@ -20,5 +16,8 @@ namespace RecrownedAthenaeum.Tools.CommandProcessor
|
||||
Process(command);
|
||||
}
|
||||
}
|
||||
public void Process(string command)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -11,7 +11,7 @@ using SixLabors.ImageSharp.PixelFormats;
|
||||
namespace RecrownedAthenaeum.Tools.TextureAtlas
|
||||
{
|
||||
|
||||
internal class TexturePacker : IDisposable
|
||||
public class TexturePacker : IDisposable
|
||||
{
|
||||
private enum SupportedExtensions
|
||||
{
|
||||
|
@@ -4,12 +4,11 @@ using System.Reflection;
|
||||
|
||||
namespace RecrownedAthenaeum.Tools
|
||||
{
|
||||
internal class ConsoleTools
|
||||
internal class Tools
|
||||
{
|
||||
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();
|
Reference in New Issue
Block a user