aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs
diff options
context:
space:
mode:
authorDiva Canto2010-01-31 11:04:32 -0800
committerDiva Canto2010-01-31 11:04:32 -0800
commit0473454876a633c2abf33cd94b082032d6367ede (patch)
tree85dac479d123b1e69d085b5d9fa4c50ee9e59ec5 /OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs
parentUpdated gridhypergrid config. (diff)
downloadopensim-SC_OLD-0473454876a633c2abf33cd94b082032d6367ede.zip
opensim-SC_OLD-0473454876a633c2abf33cd94b082032d6367ede.tar.gz
opensim-SC_OLD-0473454876a633c2abf33cd94b082032d6367ede.tar.bz2
opensim-SC_OLD-0473454876a633c2abf33cd94b082032d6367ede.tar.xz
Added missing file.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IInventoryAccessModule.cs20
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 @@
1using System;
2using System.Collections.Generic;
3
4using OpenSim.Framework;
5using OpenSim.Region.Framework.Scenes;
6
7using OpenMetaverse;
8
9namespace 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}