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