diff options
author | Melanie Thielker | 2008-12-28 19:15:20 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-12-28 19:15:20 +0000 |
commit | bafa5a3693ec054670ae19d115a5d0734ef7a68f (patch) | |
tree | 4dac6b5bc1f942306e94e7b36826a7ca47b6fab5 /OpenSim/Region/Environment/Interfaces | |
parent | Insert a 15 seconds delay before the script engine starts loading scripts (diff) | |
download | opensim-SC_OLD-bafa5a3693ec054670ae19d115a5d0734ef7a68f.zip opensim-SC_OLD-bafa5a3693ec054670ae19d115a5d0734ef7a68f.tar.gz opensim-SC_OLD-bafa5a3693ec054670ae19d115a5d0734ef7a68f.tar.bz2 opensim-SC_OLD-bafa5a3693ec054670ae19d115a5d0734ef7a68f.tar.xz |
Demonstration code for modular comms. No user functionality
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IInterregionComms.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs b/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs index d2b5dad..37cf2de 100644 --- a/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs +++ b/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs | |||
@@ -31,8 +31,12 @@ using OpenMetaverse; | |||
31 | 31 | ||
32 | namespace OpenSim.Region.Environment.Interfaces | 32 | namespace OpenSim.Region.Environment.Interfaces |
33 | { | 33 | { |
34 | public delegate void InterregionDataReceived(InterregionData data); | ||
35 | |||
34 | public interface IInterregionComms : IRegionModule | 36 | public interface IInterregionComms : IRegionModule |
35 | { | 37 | { |
38 | event InterregionDataReceived OnInterregionData; | ||
39 | |||
36 | bool SendInterregionData(UUID destination, InterregionData data); | 40 | bool SendInterregionData(UUID destination, InterregionData data); |
37 | } | 41 | } |
38 | } | 42 | } |