diff options
author | Teravus Ovares | 2007-12-31 22:56:43 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-31 22:56:43 +0000 |
commit | 3180432debcd9078e8e838d4bbe3ddaf9cdfe110 (patch) | |
tree | b838c1b5b6f3bb7b2baf5c013b1e74a44caa909f /OpenSim/Framework/IUserData.cs | |
parent | Move unused inventory files into the attic (diff) | |
download | opensim-SC_OLD-3180432debcd9078e8e838d4bbe3ddaf9cdfe110.zip opensim-SC_OLD-3180432debcd9078e8e838d4bbe3ddaf9cdfe110.tar.gz opensim-SC_OLD-3180432debcd9078e8e838d4bbe3ddaf9cdfe110.tar.bz2 opensim-SC_OLD-3180432debcd9078e8e838d4bbe3ddaf9cdfe110.tar.xz |
* Added database and UserManagerBase glue for FriendsList management
* Don't forget to run prebuild
Diffstat (limited to 'OpenSim/Framework/IUserData.cs')
-rw-r--r-- | OpenSim/Framework/IUserData.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/IUserData.cs b/OpenSim/Framework/IUserData.cs index 4e576b9..eba2329 100644 --- a/OpenSim/Framework/IUserData.cs +++ b/OpenSim/Framework/IUserData.cs | |||
@@ -93,6 +93,19 @@ namespace OpenSim.Framework | |||
93 | bool UpdateUserProfile(UserProfileData user); | 93 | bool UpdateUserProfile(UserProfileData user); |
94 | 94 | ||
95 | /// <summary> | 95 | /// <summary> |
96 | /// Updates the current region the User is in | ||
97 | /// </summary> | ||
98 | /// <param name="avatarid">User Region the Avatar is IN</param> | ||
99 | /// <param name="retionuuid">User Region the Avatar is IN</param> | ||
100 | void UpdateUserCurrentRegion(LLUUID avatarid, LLUUID regionuuid); | ||
101 | |||
102 | /// <summary> | ||
103 | /// Log User Off | ||
104 | /// </summary> | ||
105 | /// <param name="avatarid">avatar to log off</param> | ||
106 | void LogOffUser(LLUUID avatarid); | ||
107 | |||
108 | /// <summary> | ||
96 | /// Adds a new agent to the database | 109 | /// Adds a new agent to the database |
97 | /// </summary> | 110 | /// </summary> |
98 | /// <param name="agent">The agent to add</param> | 111 | /// <param name="agent">The agent to add</param> |