diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ICommander.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommander.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs new file mode 100644 index 0000000..93a9956 --- /dev/null +++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using System; | ||
2 | |||
3 | using OpenSim.Region.Environment.Modules.ModuleFramework; | ||
4 | |||
5 | namespace OpenSim.Region.Environment.Interfaces | ||
6 | { | ||
7 | public interface ICommander | ||
8 | { | ||
9 | void ProcessConsoleCommand(string function, string[] args); | ||
10 | void RegisterCommand(string commandName, ICommand command); | ||
11 | void Run(string function, object[] args); | ||
12 | string GenerateRuntimeAPI(); | ||
13 | } | ||
14 | } | ||