Extracted the Avatar appearance functions out of the IUserService interface and moved them into a IAvatarService

Although "out of the box", there is no actual functional change to behavior
This commit is contained in:
MW
2008-06-28 17:43:20 +00:00
parent 7a255d4404
commit a9347b6ceb
6 changed files with 19 additions and 10 deletions

View File

@@ -77,6 +77,13 @@ namespace OpenSim.Framework.Communications
// get { return m_transactionsManager; }
// }
protected IAvatarService m_avatarService;
public IAvatarService AvatarService
{
get { return m_avatarService; }
}
protected AssetCache m_assetCache;
public AssetCache AssetCache

View File

@@ -120,14 +120,14 @@ namespace OpenSim.Framework.Communications
/// <summary>
/// Get's the User Appearance
AvatarAppearance GetUserAppearance(LLUUID user);
// AvatarAppearance GetUserAppearance(LLUUID user);
void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance);
// void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance);
void AddAttachment(LLUUID user, LLUUID attach);
// void AddAttachment(LLUUID user, LLUUID attach);
void RemoveAttachment(LLUUID user, LLUUID attach);
// void RemoveAttachment(LLUUID user, LLUUID attach);
List<LLUUID> GetAttachments(LLUUID user);
// List<LLUUID> GetAttachments(LLUUID user);
}
}