* Completed DeRezDestination enum Simian: * Added IInventoryProvider to allow other extensions to create inventory items * Basic derez support for deleting items (the new inventory items in the trash won't actually work because the assetID is meaningless until we have an IAssetProvider) git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2175 52acb1d6-8a22-11de-b505-999d5b087335
13 lines
407 B
C#
13 lines
407 B
C#
using System;
|
|
using OpenMetaverse;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface IInventoryProvider
|
|
{
|
|
UUID CreateItem(Agent agent, string name, string description, InventoryType invType, AssetType type,
|
|
UUID assetID, UUID parentID, PermissionMask ownerMask, PermissionMask nextOwnerMask, UUID ownerID,
|
|
UUID creatorID, UUID transactionID, uint callbackID);
|
|
}
|
|
}
|