aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Interfaces')
-rw-r--r--OpenSim/Region/Interfaces/IPresenceModule.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Region/Interfaces/IPresenceModule.cs b/OpenSim/Region/Interfaces/IPresenceModule.cs
index 2b25f5e..2023f25 100644
--- a/OpenSim/Region/Interfaces/IPresenceModule.cs
+++ b/OpenSim/Region/Interfaces/IPresenceModule.cs
@@ -31,8 +31,14 @@ using OpenMetaverse;
31 31
32namespace OpenSim.Region.Interfaces 32namespace OpenSim.Region.Interfaces
33{ 33{
34 public delegate void PresenceChange(UUID userID, bool online); 34 public struct PresenceInfo
35 public delegate void BulkPresenceData(UUID[] userID, bool[] online); 35 {
36 public UUID userID;
37 public UUID regionID;
38 }
39
40 public delegate void PresenceChange(PresenceInfo info);
41 public delegate void BulkPresenceData(PresenceInfo[] info);
36 42
37 public interface IPresenceModule 43 public interface IPresenceModule
38 { 44 {