diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScenePresence.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs index d700d79..b07c821 100644 --- a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs +++ b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs | |||
@@ -26,7 +26,9 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
29 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Region.Framework.Scenes; | ||
30 | 32 | ||
31 | namespace OpenSim.Region.Framework.Interfaces | 33 | namespace OpenSim.Region.Framework.Interfaces |
32 | { | 34 | { |
@@ -52,5 +54,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
52 | // get a synchronization issue. | 54 | // get a synchronization issue. |
53 | /// </remarks> | 55 | /// </remarks> |
54 | AvatarAppearance Appearance { get; set; } | 56 | AvatarAppearance Appearance { get; set; } |
57 | |||
58 | /// <summary> | ||
59 | /// The scene objects attached to this avatar. | ||
60 | /// </summary> | ||
61 | /// <remarks> | ||
62 | /// Do not change this list directly - use methods such as | ||
63 | /// AddAttachment() and RemoveAttachment(). Lock this list when performing any read operations upon it. | ||
64 | /// </remarks> | ||
65 | List<SceneObjectGroup> Attachments { get; } | ||
55 | } | 66 | } |
56 | } \ No newline at end of file | 67 | } \ No newline at end of file |