diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs index fde5de1..375d334 100644 --- a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | |||
@@ -36,6 +36,20 @@ namespace OpenSim.Region.Framework.Interfaces | |||
36 | public interface IAttachmentsModule | 36 | public interface IAttachmentsModule |
37 | { | 37 | { |
38 | /// <summary> | 38 | /// <summary> |
39 | /// Copy attachment data from a ScenePresence into the AgentData structure for transmission to another simulator | ||
40 | /// </summary> | ||
41 | /// <param name='sp'></param> | ||
42 | /// <param name='ad'></param> | ||
43 | void CopyAttachments(IScenePresence sp, AgentData ad); | ||
44 | |||
45 | /// <summary> | ||
46 | /// Copy attachment data from an AgentData structure into a ScenePresence. | ||
47 | /// </summary> | ||
48 | /// <param name='ad'></param> | ||
49 | /// <param name='sp'></param> | ||
50 | void CopyAttachments(AgentData ad, IScenePresence sp); | ||
51 | |||
52 | /// <summary> | ||
39 | /// RezAttachments. This should only be called upon login on the first region. | 53 | /// RezAttachments. This should only be called upon login on the first region. |
40 | /// Attachment rezzings on crossings and TPs are done in a different way. | 54 | /// Attachment rezzings on crossings and TPs are done in a different way. |
41 | /// </summary> | 55 | /// </summary> |