diff options
Diffstat (limited to 'OpenSim/Framework/Communications/IUserService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index 7c243c6..f8d5541 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -108,5 +108,17 @@ namespace OpenSim.Framework.Communications | |||
108 | /// </summary> | 108 | /// </summary> |
109 | /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param> | 109 | /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param> |
110 | List<FriendListItem> GetUserFriendList(LLUUID friendlistowner); | 110 | List<FriendListItem> GetUserFriendList(LLUUID friendlistowner); |
111 | |||
112 | /// <summary> | ||
113 | /// Get's the User Appearance | ||
114 | UserAppearance GetUserAppearance(LLUUID user); | ||
115 | |||
116 | void UpdateUserAppearance(LLUUID user, UserAppearance appearance); | ||
117 | |||
118 | void AddAttachment(LLUUID user, LLUUID attach); | ||
119 | |||
120 | void RemoveAttachment(LLUUID user, LLUUID attach); | ||
121 | |||
122 | List<LLUUID> GetAttachments(LLUUID user); | ||
111 | } | 123 | } |
112 | } \ No newline at end of file | 124 | } \ No newline at end of file |