diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 7 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 10 |
2 files changed, 12 insertions, 5 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 |
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index f8ef358..4bd2ad1 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -120,14 +120,14 @@ namespace OpenSim.Framework.Communications | |||
120 | 120 | ||
121 | /// <summary> | 121 | /// <summary> |
122 | /// Get's the User Appearance | 122 | /// Get's the User Appearance |
123 | AvatarAppearance GetUserAppearance(LLUUID user); | 123 | // AvatarAppearance GetUserAppearance(LLUUID user); |
124 | 124 | ||
125 | void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); | 125 | // void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); |
126 | 126 | ||
127 | void AddAttachment(LLUUID user, LLUUID attach); | 127 | // void AddAttachment(LLUUID user, LLUUID attach); |
128 | 128 | ||
129 | void RemoveAttachment(LLUUID user, LLUUID attach); | 129 | // void RemoveAttachment(LLUUID user, LLUUID attach); |
130 | 130 | ||
131 | List<LLUUID> GetAttachments(LLUUID user); | 131 | // List<LLUUID> GetAttachments(LLUUID user); |
132 | } | 132 | } |
133 | } \ No newline at end of file | 133 | } \ No newline at end of file |