diff options
Diffstat (limited to 'OpenSim/Region/Environment/Modules/Scripting/WorldComm')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Scripting/WorldComm/WorldCommModule.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Modules/Scripting/WorldComm/WorldCommModule.cs b/OpenSim/Region/Environment/Modules/Scripting/WorldComm/WorldCommModule.cs index 99e3177..258734d 100644 --- a/OpenSim/Region/Environment/Modules/Scripting/WorldComm/WorldCommModule.cs +++ b/OpenSim/Region/Environment/Modules/Scripting/WorldComm/WorldCommModule.cs | |||
@@ -31,8 +31,8 @@ using System.Collections.Generic; | |||
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using Nini.Config; | 32 | using Nini.Config; |
33 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
34 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Framework.Interfaces; |
35 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Framework.Scenes; |
36 | 36 | ||
37 | // using log4net; | 37 | // using log4net; |
38 | // using System.Reflection; | 38 | // using System.Reflection; |
@@ -313,7 +313,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.WorldComm | |||
313 | /// Pop the first availlable listen event from the queue | 313 | /// Pop the first availlable listen event from the queue |
314 | /// </summary> | 314 | /// </summary> |
315 | /// <returns>ListenerInfo with filter filled in</returns> | 315 | /// <returns>ListenerInfo with filter filled in</returns> |
316 | public ListenerInfo GetNextMessage() | 316 | public IWorldCommListenerInfo GetNextMessage() |
317 | { | 317 | { |
318 | ListenerInfo li = null; | 318 | ListenerInfo li = null; |
319 | 319 | ||
@@ -608,7 +608,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.WorldComm | |||
608 | } | 608 | } |
609 | } | 609 | } |
610 | 610 | ||
611 | public class ListenerInfo | 611 | public class ListenerInfo: IWorldCommListenerInfo |
612 | { | 612 | { |
613 | private bool m_active; // Listener is active or not | 613 | private bool m_active; // Listener is active or not |
614 | private int m_handle; // Assigned handle of this listener | 614 | private int m_handle; // Assigned handle of this listener |