[Simian] * Initial task inventory support. Move, remove, and RezScript are not supported yet * SimulationObject Frozen and RotationAxis properties now point to the root prim in the linkset git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2503 52acb1d6-8a22-11de-b505-999d5b087335
14 lines
338 B
C#
14 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using OpenMetaverse;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface ITaskInventoryProvider
|
|
{
|
|
void AddTaskFile(string filename, byte[] assetData);
|
|
bool RemoveTaskFile(string filename);
|
|
bool TryGetTaskFile(string filename, out byte[] assetData);
|
|
}
|
|
}
|