aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IBakedTextureModule.cs
blob: 21ed44ffdbdef73d1cc0770b9b7fde3efdda1886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
    {
        WearableCacheItem[] Get(UUID id);
        void Store(UUID id, WearableCacheItem[] data);
    }
}