diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommander.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs index c4102af..a267115 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommander.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs | |||
@@ -29,6 +29,11 @@ namespace OpenSim.Region.Environment.Interfaces | |||
29 | { | 29 | { |
30 | public interface ICommander | 30 | public interface ICommander |
31 | { | 31 | { |
32 | /// <summary> | ||
33 | /// The name of this commander | ||
34 | /// </summary> | ||
35 | string Name { get; } | ||
36 | |||
32 | void ProcessConsoleCommand(string function, string[] args); | 37 | void ProcessConsoleCommand(string function, string[] args); |
33 | void RegisterCommand(string commandName, ICommand command); | 38 | void RegisterCommand(string commandName, ICommand command); |
34 | void Run(string function, object[] args); | 39 | void Run(string function, object[] args); |