ICommander.cs 410 B

1234567891011121314
  1. using System;
  2. using OpenSim.Region.Environment.Modules.ModuleFramework;
  3. namespace OpenSim.Region.Environment.Interfaces
  4. {
  5. public interface ICommander
  6. {
  7. void ProcessConsoleCommand(string function, string[] args);
  8. void RegisterCommand(string commandName, ICommand command);
  9. void Run(string function, object[] args);
  10. string GenerateRuntimeAPI();
  11. }
  12. }