Files
opensim/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectInventory.cs
Charles Krinke 6942eaed5b Thank you kindly, Snowdrop, for a patch that solves:
The current API for MRM is quite sparse, this patch 
supplies basic support for accessing the task 
inventory of object.
2009-06-29 21:47:47 +00:00

18 lines
400 B
C#

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; }
}
}