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.
This commit is contained in:
Charles Krinke
2009-06-29 21:47:47 +00:00
parent dc9900d73f
commit 6942eaed5b
8 changed files with 320 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
using System;
using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
/// <summary>
/// This implements the methods needed to operate on individual inventory items.
/// </summary>
public interface IInventoryItem
{
int Type { get; }
UUID AssetID { get; }
T RetreiveAsset<T>() where T : OpenMetaverse.Asset, new();
}
}