Add the interfaces for the new Avination baked texture cache service

This commit is contained in:
Melanie
2012-12-19 13:04:41 +01:00
parent 861477d85e
commit d1dd5a8ba9
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
////////////////////////////////////////////////////////////////
//
// (c) 2009, 2010 Careminster Limited and Melanie Thielker
//
// All rights reserved
//
using System;
using Nini.Config;
using OpenSim.Framework;
using OpenMetaverse;
namespace OpenSim.Services.Interfaces
{
public interface IBakedTextureModule
{
AssetBase[] Get(UUID id);
void Store(UUID id, AssetBase[] data);
}
}