123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System.Collections.Generic;
- namespace OpenSim.Region.Framework.Interfaces
- {
- public interface ICommander
- {
-
-
-
- string Name { get; }
-
-
-
- string Help { get; }
-
-
-
- Dictionary<string, ICommand> Commands { get; }
- void ProcessConsoleCommand(string function, string[] args);
- void RegisterCommand(string commandName, ICommand command);
- void Run(string function, object[] args);
- string GenerateRuntimeAPI();
- }
- }
|