diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommander.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs index a267115..a61ce490 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommander.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs | |||
@@ -29,10 +29,15 @@ namespace OpenSim.Region.Environment.Interfaces | |||
29 | { | 29 | { |
30 | public interface ICommander | 30 | public interface ICommander |
31 | { | 31 | { |
32 | /// <summary> | 32 | /// <value> |
33 | /// The name of this commander | 33 | /// The name of this commander |
34 | /// </summary> | 34 | /// </value> |
35 | string Name { get; } | 35 | string Name { get; } |
36 | |||
37 | /// <value> | ||
38 | /// Provide general help information about this commander. | ||
39 | /// </value> | ||
40 | string Help { get; } | ||
36 | 41 | ||
37 | void ProcessConsoleCommand(string function, string[] args); | 42 | void ProcessConsoleCommand(string function, string[] args); |
38 | void RegisterCommand(string commandName, ICommand command); | 43 | void RegisterCommand(string commandName, ICommand command); |