Mother2GbaTranslation/tools/ScriptTool/CommandOptions.cs

25 lines
528 B
C#
Raw Normal View History

2015-03-13 22:04:23 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
class CommandOptions
{
public string WorkingDirectory { get; set; }
public CommandType Command { get; set; }
public bool DoMiscText { get; set; }
public bool DoMainText { get; set; }
public string EbRom { get; set; }
public string M12Rom { get; set; }
}
enum CommandType
{
Compile,
Decompile
}
}