aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
blob: f03e96fb46dd46fd18f32e52f3cd9f9814465f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

using System;
using System.Collections.Generic;

using OpenMetaverse;

namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object
{
	
	/// <summary>
	/// This implements the methods neccesary to operate on the inventory of an object
	/// </summary>
	public interface IObjectInventory : IDictionary<UUID, IInventoryItem>
	{
		IInventoryItem this[string name] { get; }
	}
}