aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IUserData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IUserData.cs')
-rw-r--r--OpenSim/Framework/IUserData.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/IUserData.cs b/OpenSim/Framework/IUserData.cs
index a926883..cd29816 100644
--- a/OpenSim/Framework/IUserData.cs
+++ b/OpenSim/Framework/IUserData.cs
@@ -174,5 +174,17 @@ namespace OpenSim.Framework
174 /// Initialises the plugin (artificial constructor) 174 /// Initialises the plugin (artificial constructor)
175 /// </summary> 175 /// </summary>
176 void Initialise(); 176 void Initialise();
177
178 /// <summary>
179 /// Gets the user appearance
180 /// </summer>
181 UserAppearance GetUserAppearance(LLUUID user);
182
183 void UpdateUserAppearance(LLUUID user, UserAppearance appearance);
184
185
186 void AddAttachment(LLUUID user, LLUUID item);
187 void RemoveAttachment(LLUUID user, LLUUID item);
188 List<LLUUID> GetAttachments(LLUUID user);
177 } 189 }
178} \ No newline at end of file 190} \ No newline at end of file