diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Object')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs | 34 |
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 | ||
2 | using System; | 2 | using System; |
3 | using System.Collections.Generic; | 3 | using System.Collections.Generic; |
4 | 4 | ||
5 | using OpenMetaverse; | 5 | using OpenMetaverse; |
6 | 6 | ||
7 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object | 7 | namespace 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 | } |