diff options
author | Jeff Ames | 2008-06-30 12:41:32 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-30 12:41:32 +0000 |
commit | 2dfaa3c5e489d48a58ce460011dc55e853b26e27 (patch) | |
tree | 1bad29d974ad9559e2e432e86bb155e762d9d9cd /OpenSim/Framework/Communications | |
parent | properly explaining each #pragma warning disable (diff) | |
download | opensim-SC_OLD-2dfaa3c5e489d48a58ce460011dc55e853b26e27.zip opensim-SC_OLD-2dfaa3c5e489d48a58ce460011dc55e853b26e27.tar.gz opensim-SC_OLD-2dfaa3c5e489d48a58ce460011dc55e853b26e27.tar.bz2 opensim-SC_OLD-2dfaa3c5e489d48a58ce460011dc55e853b26e27.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/IAvatarService.cs | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/OpenSim/Framework/Communications/IAvatarService.cs b/OpenSim/Framework/Communications/IAvatarService.cs index fdac53f..a3494cf 100644 --- a/OpenSim/Framework/Communications/IAvatarService.cs +++ b/OpenSim/Framework/Communications/IAvatarService.cs | |||
@@ -1,21 +1,21 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using libsecondlife; | 4 | using libsecondlife; |
5 | 5 | ||
6 | namespace OpenSim.Framework.Communications | 6 | namespace OpenSim.Framework.Communications |
7 | { | 7 | { |
8 | public interface IAvatarService | 8 | public interface IAvatarService |
9 | { | 9 | { |
10 | /// Get's the User Appearance | 10 | /// Get's the User Appearance |
11 | AvatarAppearance GetUserAppearance(LLUUID user); | 11 | AvatarAppearance GetUserAppearance(LLUUID user); |
12 | 12 | ||
13 | void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); | 13 | void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); |
14 | 14 | ||
15 | void AddAttachment(LLUUID user, LLUUID attach); | 15 | void AddAttachment(LLUUID user, LLUUID attach); |
16 | 16 | ||
17 | void RemoveAttachment(LLUUID user, LLUUID attach); | 17 | void RemoveAttachment(LLUUID user, LLUUID attach); |
18 | 18 | ||
19 | List<LLUUID> GetAttachments(LLUUID user); | 19 | List<LLUUID> GetAttachments(LLUUID user); |
20 | } | 20 | } |
21 | } | 21 | } |