diff options
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs b/OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs new file mode 100644 index 0000000..2401402 --- /dev/null +++ b/OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | |||
4 | using OpenSim.Framework; | ||
5 | using OpenSim.Region.Framework.Scenes; | ||
6 | |||
7 | using OpenMetaverse; | ||
8 | |||
9 | namespace OpenSim.Region.Framework.Interfaces | ||
10 | { | ||
11 | public interface IInventoryAccessModule | ||
12 | { | ||
13 | UUID CapsUpdateInventoryItemAsset(IClientAPI remoteClient, UUID itemID, byte[] data); | ||
14 | UUID DeleteToInventory(DeRezAction action, UUID folderID, SceneObjectGroup objectGroup, IClientAPI remoteClient); | ||
15 | SceneObjectGroup RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart, | ||
16 | UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection, | ||
17 | bool RezSelected, bool RemoveItem, UUID fromTaskID, bool attachment); | ||
18 | void TransferInventoryAssets(InventoryItemBase item, UUID sender, UUID receiver); | ||
19 | } | ||
20 | } | ||