diff options
author | Treeki <treeki@gmail.com> | 2011-03-26 03:45:34 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-03-26 03:45:34 +0100 |
commit | fd085848e60831a8582c24de8f30ad4528f9d490 (patch) | |
tree | b00fd7539c1cb02ff5187f212b5bd2e8128e82bd /ConsoleApp/Command.cs | |
parent | 6a3b743987ca132729845613bc2d043f75f0d9e5 (diff) | |
download | nw4rtools-fd085848e60831a8582c24de8f30ad4528f9d490.tar.gz nw4rtools-fd085848e60831a8582c24de8f30ad4528f9d490.zip |
unfinished console interface to NW4RTools added
Diffstat (limited to '')
-rw-r--r-- | ConsoleApp/Command.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ConsoleApp/Command.cs b/ConsoleApp/Command.cs new file mode 100644 index 0000000..dcb6def --- /dev/null +++ b/ConsoleApp/Command.cs @@ -0,0 +1,15 @@ +using System; +namespace ConsoleApp { + public abstract class Command { + public readonly string Description; + + public Command(string description) { + Description = description; + } + + + public abstract void Execute(string[] args); + public abstract string GetHelp(string[] args); + } +} + |