aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
blob: 98ac13d2a17b576ebe66ad3f70ca76aa2c1da8f6 (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; }
	}
}