diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ICommandableModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommandableModule.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs new file mode 100644 index 0000000..31ef49b --- /dev/null +++ b/OpenSim/Region/Environment/Interfaces/ICommandableModule.cs | |||
@@ -0,0 +1,16 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | using OpenSim.Region.Environment.Modules.ModuleFramework; | ||
6 | |||
7 | namespace OpenSim.Region.Environment.Interfaces | ||
8 | { | ||
9 | public interface ICommandableModule | ||
10 | { | ||
11 | ICommander CommandInterface | ||
12 | { | ||
13 | get; | ||
14 | } | ||
15 | } | ||
16 | } | ||