aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
diff options
context:
space:
mode:
authorJeff Ames2009-07-01 10:26:43 +0000
committerJeff Ames2009-07-01 10:26:43 +0000
commit3f2fba610ea48b6d93a77f3965882d600b6a908a (patch)
tree6c69fcfd02023f5450e11a6f244a611298d8091f /OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
parentadd some more intuitive overloads for PrimitiveBaseShape SetPathRange and Set... (diff)
downloadopensim-SC_OLD-3f2fba610ea48b6d93a77f3965882d600b6a908a.zip
opensim-SC_OLD-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.gz
opensim-SC_OLD-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.bz2
opensim-SC_OLD-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.xz
Update svn properties.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs34
1 files changed, 17 insertions, 17 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
index 98ac13d..f03e96f 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
@@ -1,17 +1,17 @@
1 1
2using System; 2using System;
3using System.Collections.Generic; 3using System.Collections.Generic;
4 4
5using OpenMetaverse; 5using OpenMetaverse;
6 6
7namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object 7namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object
8{ 8{
9 9
10 /// <summary> 10 /// <summary>
11 /// This implements the methods neccesary to operate on the inventory of an object 11 /// This implements the methods neccesary to operate on the inventory of an object
12 /// </summary> 12 /// </summary>
13 public interface IObjectInventory : IDictionary<UUID, IInventoryItem> 13 public interface IObjectInventory : IDictionary<UUID, IInventoryItem>
14 { 14 {
15 IInventoryItem this[string name] { get; } 15 IInventoryItem this[string name] { get; }
16 } 16 }
17} 17}