mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 22:45:43 +08:00
20 lines
428 B
C#
20 lines
428 B
C#
////////////////////////////////////////////////////////////////
|
|
//
|
|
// (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);
|
|
}
|
|
}
|