aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie2009-12-27 01:27:51 +0000
committerMelanie2009-12-27 01:27:51 +0000
commit982e3ff5d927df498c1d14111e2c61f0251c09d4 (patch)
tree5488a47eedaadf5fd4800e2ac64f4aed2cd33a48 /OpenSim/Data
parentAdd AvatarInterestsReply (diff)
downloadopensim-SC_OLD-982e3ff5d927df498c1d14111e2c61f0251c09d4.zip
opensim-SC_OLD-982e3ff5d927df498c1d14111e2c61f0251c09d4.tar.gz
opensim-SC_OLD-982e3ff5d927df498c1d14111e2c61f0251c09d4.tar.bz2
opensim-SC_OLD-982e3ff5d927df498c1d14111e2c61f0251c09d4.tar.xz
Presence Step 1
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/IPresenceData.cs10
1 files changed, 4 insertions, 6 deletions
diff --git a/OpenSim/Data/IPresenceData.cs b/OpenSim/Data/IPresenceData.cs
index e5a8ebd..b46b92d 100644
--- a/OpenSim/Data/IPresenceData.cs
+++ b/OpenSim/Data/IPresenceData.cs
@@ -32,10 +32,11 @@ using OpenSim.Framework;
32 32
33namespace OpenSim.Data 33namespace OpenSim.Data
34{ 34{
35 public struct PresenceData 35 // This MUST be a ref type!
36 public class PresenceData
36 { 37 {
37 public UUID UUID; 38 public UUID PrincipalID;
38 public UUID currentRegion; 39 public UUID RegionID;
39 public Dictionary<string, string> Data; 40 public Dictionary<string, string> Data;
40 } 41 }
41 42
@@ -48,9 +49,6 @@ namespace OpenSim.Data
48 49
49 PresenceData Get(UUID principalID); 50 PresenceData Get(UUID principalID);
50 51
51 bool SetUserDataItem(UUID principalID, string item, string value);
52 bool SetRegionDataItem(UUID principalID, string item, string value);
53
54 bool Delete(UUID regionID); 52 bool Delete(UUID regionID);
55 } 53 }
56} 54}