blob: 396136bc8d32dcea51325ec867c4cc34863d45c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using OpenSim.Region.Environment.Modules.ModuleFramework;
namespace OpenSim.Region.Environment.Interfaces
{
public interface ICommand
{
void AddArgument(string name, string helptext, string type);
System.Collections.Generic.Dictionary<string, string> Arguments { get; }
string Help { get; }
string Name { get; }
void Run(object[] args);
void ShowConsoleHelp();
}
}
|