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