aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/ICommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ICommand.cs')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ICommand.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommand.cs b/OpenSim/Region/Environment/Interfaces/ICommand.cs
new file mode 100644
index 0000000..bccd8d3
--- /dev/null
+++ b/OpenSim/Region/Environment/Interfaces/ICommand.cs
@@ -0,0 +1,16 @@
1using System;
2
3using OpenSim.Region.Environment.Modules.ModuleFramework;
4
5namespace OpenSim.Region.Environment.Interfaces
6{
7 public interface ICommand
8 {
9 void AddArgument(string name, string helptext, string type);
10 System.Collections.Generic.Dictionary<string, string> Arguments { get; }
11 string Help { get; }
12 string Name { get; }
13 void Run(object[] args);
14 void ShowConsoleHelp();
15 }
16}