* Added IAssetProvider interface, converted AssetManager to new interface
* Some prep work to get ready for proper image delivery

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2206 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-09-09 00:41:55 +00:00
parent acda9ee118
commit 9fda90f2a0
4 changed files with 72 additions and 39 deletions

View File

@@ -0,0 +1,12 @@
using System;
using OpenMetaverse;
namespace Simian
{
public interface IAssetProvider
{
void StoreAsset(Asset asset);
void StoreTexture(AssetTexture texture);
bool TryGetAsset(UUID id, out Asset asset);
}
}