aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IPresenceData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/IPresenceData.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Data/IPresenceData.cs b/OpenSim/Data/IPresenceData.cs
index b46b92d..1ccabcc 100644
--- a/OpenSim/Data/IPresenceData.cs
+++ b/OpenSim/Data/IPresenceData.cs
@@ -37,6 +37,7 @@ namespace OpenSim.Data
37 { 37 {
38 public UUID PrincipalID; 38 public UUID PrincipalID;
39 public UUID RegionID; 39 public UUID RegionID;
40 public UUID SessionID;
40 public Dictionary<string, string> Data; 41 public Dictionary<string, string> Data;
41 } 42 }
42 43
@@ -47,8 +48,9 @@ namespace OpenSim.Data
47 { 48 {
48 bool Store(PresenceData data); 49 bool Store(PresenceData data);
49 50
50 PresenceData Get(UUID principalID); 51 PresenceData Get(UUID sessionID);
51 52 void LogoutRegionAgents(UUID regionID);
52 bool Delete(UUID regionID); 53 bool ReportAgent(UUID sessionID, UUID regionID, string position, string lookAt);
54 PresenceData[] Get(string field, string data);
53 } 55 }
54} 56}