diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Grid/Interregion/IInterregionModule.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/Grid/Interregion/IInterregionModule.cs b/OpenSim/Region/Environment/Modules/Grid/Interregion/IInterregionModule.cs new file mode 100644 index 0000000..ac4062b --- /dev/null +++ b/OpenSim/Region/Environment/Modules/Grid/Interregion/IInterregionModule.cs | |||
@@ -0,0 +1,16 @@ | |||
1 | using OpenSim.Framework; | ||
2 | using OpenSim.Region.Environment.Modules.Communications.Interregion; | ||
3 | using OpenSim.Region.Environment.Scenes; | ||
4 | |||
5 | namespace OpenSim.Region.Environment.Modules.Grid.Interregion | ||
6 | { | ||
7 | public interface IInterregionModule | ||
8 | { | ||
9 | void RegisterMethod<T>(T e); | ||
10 | bool HasInterface<T>(Location loc); | ||
11 | T RequestInterface<T>(Location loc); | ||
12 | T[] RequestInterface<T>(); | ||
13 | Location GetLocationByDirection(Scene scene, InterregionModule.Direction dir); | ||
14 | void internal_CreateRemotingObjects(); | ||
15 | } | ||
16 | } \ No newline at end of file | ||