* Added more profile fields to Agent * Removed inventory hack from AccountManager * Create an inventory skeleton in AuthFreeForAll * Simplify logout process with DisconnectClient() * Handle FetchInventory * Added CreateFolder and CreateRootFolder to IInventoryProvider git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2251 52acb1d6-8a22-11de-b505-999d5b087335
16 lines
630 B
C#
16 lines
630 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);
|
|
bool CreateFolder(Agent agent, UUID folderID, string name, AssetType preferredType, UUID parentID,
|
|
UUID ownerID);
|
|
bool CreateRootFolder(Agent agent, UUID folderID, string name, UUID ownerID);
|
|
}
|
|
}
|