Simian:
* 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:
12
Programs/Simian/Interfaces/IAssetProvider.cs
Normal file
12
Programs/Simian/Interfaces/IAssetProvider.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user