diff options
author | Sean Dague | 2008-05-01 18:36:43 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-01 18:36:43 +0000 |
commit | 70f7672dad3534f215396a578fc13f5628e45310 (patch) | |
tree | 49cc5a4ea03bb0b7d67f7859d93036aaf1208802 /OpenSim/Framework/Communications/IUserService.cs | |
parent | Load grid list in LaunchSLClient from .ini file at run-time. (diff) | |
download | opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.zip opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.gz opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.bz2 opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.xz |
added in IUserService functions. These don't do anything yet,
but the set all compiles together fine, and it provides people
an idea of where we are heading.
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 |