From fd085848e60831a8582c24de8f30ad4528f9d490 Mon Sep 17 00:00:00 2001 From: Treeki Date: Sat, 26 Mar 2011 03:45:34 +0100 Subject: unfinished console interface to NW4RTools added --- ConsoleApp/Command.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ConsoleApp/Command.cs (limited to 'ConsoleApp/Command.cs') 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); + } +} + -- cgit v1.2.3