diff options
Diffstat (limited to '')
-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> |