diff options
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
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 0410f0e..45f692b 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -77,6 +77,13 @@ namespace OpenSim.Framework.Communications | |||
77 | // get { return m_transactionsManager; } | 77 | // get { return m_transactionsManager; } |
78 | // } | 78 | // } |
79 | 79 | ||
80 | protected IAvatarService m_avatarService; | ||
81 | |||
82 | public IAvatarService AvatarService | ||
83 | { | ||
84 | get { return m_avatarService; } | ||
85 | } | ||
86 | |||
80 | protected AssetCache m_assetCache; | 87 | protected AssetCache m_assetCache; |
81 | 88 | ||
82 | public AssetCache AssetCache | 89 | public AssetCache AssetCache |