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