using System;
using System.Collections.Generic;
using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object
{
///
/// This implements the methods neccesary to operate on the inventory of an object
///
public interface IObjectInventory : IDictionary
{
IInventoryItem this[string name] { get; }
}
}