mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 06:25:44 +08:00
18 lines
383 B
C#
18 lines
383 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; }
|
|
}
|
|
}
|