diff options
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs index e012885..0c82411 100644 --- a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
47 | IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, bool silent); | 47 | IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, bool silent); |
48 | 48 | ||
49 | /// <summary> | 49 | /// <summary> |
50 | /// Attach an object to an avatar. | 50 | /// Attach an object to an avatar |
51 | /// </summary> | 51 | /// </summary> |
52 | /// <param name="remoteClient"></param> | 52 | /// <param name="remoteClient"></param> |
53 | /// <param name="grp"></param> | 53 | /// <param name="grp"></param> |
@@ -110,11 +110,11 @@ namespace OpenSim.Region.Framework.Interfaces | |||
110 | void DetachSingleAttachmentToGround(UUID itemID, IClientAPI remoteClient); | 110 | void DetachSingleAttachmentToGround(UUID itemID, IClientAPI remoteClient); |
111 | 111 | ||
112 | /// <summary> | 112 | /// <summary> |
113 | /// Update the user inventory to show a detach. | 113 | /// Detach the given item so that it remains in the user's inventory. |
114 | /// </summary> | 114 | /// </summary> |
115 | /// <param name="itemID">/param> | 115 | /// <param name="itemID">/param> |
116 | /// <param name="remoteClient"></param> | 116 | /// <param name="remoteClient"></param> |
117 | void ShowDetachInUserInventory(UUID itemID, IClientAPI remoteClient); | 117 | void DetachSingleAttachmentToInv(UUID itemID, IClientAPI remoteClient); |
118 | 118 | ||
119 | /// <summary> | 119 | /// <summary> |
120 | /// Update the position of an attachment. | 120 | /// Update the position of an attachment. |
@@ -126,18 +126,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
126 | /// <summary> | 126 | /// <summary> |
127 | /// Update the user inventory with a changed attachment | 127 | /// Update the user inventory with a changed attachment |
128 | /// </summary> | 128 | /// </summary> |
129 | /// <param name="remoteClient"> | 129 | /// <param name="remoteClient"></param> |
130 | /// A <see cref="IClientAPI"/> | 130 | /// <param name="grp"></param> |
131 | /// </param> | 131 | /// <param name="itemID"></param> |
132 | /// <param name="grp"> | 132 | /// <param name="agentID"></param> |
133 | /// A <see cref="SceneObjectGroup"/> | ||
134 | /// </param> | ||
135 | /// <param name="itemID"> | ||
136 | /// A <see cref="UUID"/> | ||
137 | /// </param> | ||
138 | /// <param name="agentID"> | ||
139 | /// A <see cref="UUID"/> | ||
140 | /// </param> | ||
141 | void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID); | 133 | void UpdateKnownItem(IClientAPI remoteClient, SceneObjectGroup grp, UUID itemID, UUID agentID); |
142 | } | 134 | } |
143 | } | 135 | } |