Merge branch 'avination' into careminster
commit
f6f2080539
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// (c) 2009, 2010 Careminster Limited and Melanie Thielker
|
||||||
|
//
|
||||||
|
// All rights reserved
|
||||||
|
//
|
||||||
|
using System;
|
||||||
|
using Nini.Config;
|
||||||
|
|
||||||
|
namespace OpenSim.Services.Interfaces
|
||||||
|
{
|
||||||
|
public interface IBakedTextureService
|
||||||
|
{
|
||||||
|
string Get(string id);
|
||||||
|
void Store(string id, string data);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue