diff options
author | Melanie | 2012-12-21 22:16:22 +0000 |
---|---|---|
committer | Melanie | 2012-12-21 22:16:22 +0000 |
commit | f6f2080539015f3bb3e3267815be3d454c07c4d6 (patch) | |
tree | 05bc30a034ab85b62a46b0ca76f40771db330c2f /OpenSim/Region | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Add the interfaces for the new Avination baked texture cache service (diff) | |
download | opensim-SC_OLD-f6f2080539015f3bb3e3267815be3d454c07c4d6.zip opensim-SC_OLD-f6f2080539015f3bb3e3267815be3d454c07c4d6.tar.gz opensim-SC_OLD-f6f2080539015f3bb3e3267815be3d454c07c4d6.tar.bz2 opensim-SC_OLD-f6f2080539015f3bb3e3267815be3d454c07c4d6.tar.xz |
Merge branch 'avination' into careminster
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IBakedTextureModule.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IBakedTextureModule.cs b/OpenSim/Region/Framework/Interfaces/IBakedTextureModule.cs new file mode 100644 index 0000000..d63898a --- /dev/null +++ b/OpenSim/Region/Framework/Interfaces/IBakedTextureModule.cs | |||
@@ -0,0 +1,19 @@ | |||
1 | //////////////////////////////////////////////////////////////// | ||
2 | // | ||
3 | // (c) 2009, 2010 Careminster Limited and Melanie Thielker | ||
4 | // | ||
5 | // All rights reserved | ||
6 | // | ||
7 | using System; | ||
8 | using Nini.Config; | ||
9 | using OpenSim.Framework; | ||
10 | using OpenMetaverse; | ||
11 | |||
12 | namespace OpenSim.Services.Interfaces | ||
13 | { | ||
14 | public interface IBakedTextureModule | ||
15 | { | ||
16 | AssetBase[] Get(UUID id); | ||
17 | void Store(UUID id, AssetBase[] data); | ||
18 | } | ||
19 | } | ||