blob: 316a8131c037c634b60831409628abd212319dda (
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();
}
}
|