aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IAvatarService.cs
diff options
context:
space:
mode:
authorJeff Ames2008-06-30 12:41:32 +0000
committerJeff Ames2008-06-30 12:41:32 +0000
commit2dfaa3c5e489d48a58ce460011dc55e853b26e27 (patch)
tree1bad29d974ad9559e2e432e86bb155e762d9d9cd /OpenSim/Framework/Communications/IAvatarService.cs
parentproperly explaining each #pragma warning disable (diff)
downloadopensim-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/IAvatarService.cs')
-rw-r--r--OpenSim/Framework/Communications/IAvatarService.cs42
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 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using libsecondlife; 4using libsecondlife;
5 5
6namespace OpenSim.Framework.Communications 6namespace 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}