aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces/IPresenceModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Interfaces/IPresenceModule.cs')
-rw-r--r--OpenSim/Region/Interfaces/IPresenceModule.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Interfaces/IPresenceModule.cs b/OpenSim/Region/Interfaces/IPresenceModule.cs
index 2023f25..23cf064 100644
--- a/OpenSim/Region/Interfaces/IPresenceModule.cs
+++ b/OpenSim/Region/Interfaces/IPresenceModule.cs
@@ -35,6 +35,12 @@ namespace OpenSim.Region.Interfaces
35 { 35 {
36 public UUID userID; 36 public UUID userID;
37 public UUID regionID; 37 public UUID regionID;
38
39 public PresenceInfo(UUID userID, UUID regionID)
40 {
41 this.userID = userID;
42 this.regionID = regionID;
43 }
38 } 44 }
39 45
40 public delegate void PresenceChange(PresenceInfo info); 46 public delegate void PresenceChange(PresenceInfo info);