Add missing files *blush*

This commit is contained in:
Melanie
2013-12-11 01:44:03 +00:00
parent 5b73b9c4a8
commit 92aad6f1bb
2 changed files with 176 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
{
WearableCacheItem[] Get(UUID id);
void Store(UUID id, WearableCacheItem[] data);
}
}