blob: 8206ecd4ab4fdb4e54b0cc85d37ae8998e57d33a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}
}
|