diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 9072035..1154fba 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -226,7 +226,23 @@ namespace OpenSim.Framework | |||
226 | public delegate void ImprovedInstantMessage( | 226 | public delegate void ImprovedInstantMessage( |
227 | LLUUID fromAgentID, LLUUID fromAgentSession, LLUUID toAgentID, LLUUID imSessionID, uint timestamp, | 227 | LLUUID fromAgentID, LLUUID fromAgentSession, LLUUID toAgentID, LLUUID imSessionID, uint timestamp, |
228 | string fromAgentName, string message, byte dialog); // Cut down from full list | 228 | string fromAgentName, string message, byte dialog); // Cut down from full list |
229 | public delegate void RezObject(IClientAPI remoteClient, LLUUID itemID, LLVector3 pos); | 229 | |
230 | //rezPacket.RezData.BypassRaycast; | ||
231 | //rezPacket.RezData.RayEnd; | ||
232 | //rezPacket.RezData.RayEndIsIntersection; | ||
233 | //rezPacket.RezData.RayStart; | ||
234 | //rezPacket.RezData.RayTargetID; | ||
235 | //rezPacket.RezData.RemoveItem; | ||
236 | //rezPacket.RezData.RezSelected; | ||
237 | //rezPacket.RezData.FromTaskID; | ||
238 | //rezPacket.RezData.FromTaskID; | ||
239 | //rezPacket.RezData.EveryoneMask; | ||
240 | //rezPacket.RezData.GroupMask; | ||
241 | //rezPacket.RezData.NextOwnerMask; | ||
242 | public delegate void RezObject(IClientAPI remoteClient, LLUUID itemID, LLVector3 RayEnd, LLVector3 RayStart, | ||
243 | LLUUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection, | ||
244 | uint EveryoneMask, uint GroupMask, uint NextOwnerMask, uint ItemFlags, | ||
245 | bool RezSelected, bool RemoveItem, LLUUID fromTaskID ); | ||
230 | 246 | ||
231 | public delegate void ModifyTerrain( | 247 | public delegate void ModifyTerrain( |
232 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, | 248 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, |