diff options
author | Diva Canto | 2010-01-31 11:04:32 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-31 11:04:32 -0800 |
commit | 0473454876a633c2abf33cd94b082032d6367ede (patch) | |
tree | 85dac479d123b1e69d085b5d9fa4c50ee9e59ec5 /OpenSim | |
parent | Updated gridhypergrid config. (diff) | |
download | opensim-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')
-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 | } | ||