Files
libremetaverse/Programs/Simian/Interfaces/IAssetProvider.cs
John Hurliman 805fb7c18d Simian:
* Decode layer boundaries when storing a texture asset
* Started fleshing out correct texture downloading
* Add avatars to the scene along with prims

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2224 52acb1d6-8a22-11de-b505-999d5b087335
2008-09-15 23:17:21 +00:00

12 lines
206 B
C#

using System;
using OpenMetaverse;
namespace Simian
{
public interface IAssetProvider
{
void StoreAsset(Asset asset);
bool TryGetAsset(UUID id, out Asset asset);
}
}