diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionModule.cs | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 9b97fc6..24da06c 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | |||
@@ -36,7 +36,7 @@ using OpenSim.Region.Environment.LandManagement; | |||
36 | 36 | ||
37 | using System.Collections.Generic; | 37 | using System.Collections.Generic; |
38 | 38 | ||
39 | namespace OpenSim.Region.Interfaces | 39 | namespace OpenSim.Region.Environment.Interfaces |
40 | { | 40 | { |
41 | public interface IRegionDataStore | 41 | public interface IRegionDataStore |
42 | { | 42 | { |
diff --git a/OpenSim/Region/Environment/Interfaces/IRegionModule.cs b/OpenSim/Region/Environment/Interfaces/IRegionModule.cs new file mode 100644 index 0000000..84e156f --- /dev/null +++ b/OpenSim/Region/Environment/Interfaces/IRegionModule.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Region.Environment.Interfaces | ||
6 | { | ||
7 | public interface IRegionModule | ||
8 | { | ||
9 | void Initialise(Scenes.Scene scene); | ||
10 | void PostInitialise(); | ||
11 | void CloseDown(); | ||
12 | string GetName(); | ||
13 | } | ||
14 | } | ||