diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ICommand.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommand.cs | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommand.cs b/OpenSim/Region/Environment/Interfaces/ICommand.cs index bccd8d3..396136b 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommand.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommand.cs | |||
@@ -1,16 +1,16 @@ | |||
1 | using System; | 1 | using System; |
2 | 2 | ||
3 | using OpenSim.Region.Environment.Modules.ModuleFramework; | 3 | using OpenSim.Region.Environment.Modules.ModuleFramework; |
4 | 4 | ||
5 | namespace OpenSim.Region.Environment.Interfaces | 5 | namespace OpenSim.Region.Environment.Interfaces |
6 | { | 6 | { |
7 | public interface ICommand | 7 | public interface ICommand |
8 | { | 8 | { |
9 | void AddArgument(string name, string helptext, string type); | 9 | void AddArgument(string name, string helptext, string type); |
10 | System.Collections.Generic.Dictionary<string, string> Arguments { get; } | 10 | System.Collections.Generic.Dictionary<string, string> Arguments { get; } |
11 | string Help { get; } | 11 | string Help { get; } |
12 | string Name { get; } | 12 | string Name { get; } |
13 | void Run(object[] args); | 13 | void Run(object[] args); |
14 | void ShowConsoleHelp(); | 14 | void ShowConsoleHelp(); |
15 | } | 15 | } |
16 | } | 16 | } |