aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General
diff options
context:
space:
mode:
authorlbsa712007-10-19 08:57:30 +0000
committerlbsa712007-10-19 08:57:30 +0000
commit656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a (patch)
treec79aa6b2736c05ca2e395b53e83bbfd54e23431b /OpenSim/Framework/General
parentchanged the RegionID config name (that loaded from the region.xml files back ... (diff)
downloadopensim-SC_OLD-656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a.zip
opensim-SC_OLD-656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a.tar.gz
opensim-SC_OLD-656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a.tar.bz2
opensim-SC_OLD-656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a.tar.xz
* some more refactoring + bugfix
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r--OpenSim/Framework/General/Interfaces/IAssetServer.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IAssetServer.cs b/OpenSim/Framework/General/Interfaces/IAssetServer.cs
index e7401eb..e615bf8 100644
--- a/OpenSim/Framework/General/Interfaces/IAssetServer.cs
+++ b/OpenSim/Framework/General/Interfaces/IAssetServer.cs
@@ -25,6 +25,8 @@
25* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26* 26*
27*/ 27*/
28using System;
29using System.Collections.Generic;
28using libsecondlife; 30using libsecondlife;
29using OpenSim.Framework.Types; 31using OpenSim.Framework.Types;
30 32
@@ -43,6 +45,11 @@ namespace OpenSim.Framework.Interfaces
43 void SetServerInfo(string ServerUrl, string ServerKey); 45 void SetServerInfo(string ServerUrl, string ServerKey);
44 void Close(); 46 void Close();
45 void LoadAsset(AssetBase info, bool image, string filename); 47 void LoadAsset(AssetBase info, bool image, string filename);
48 List<AssetBase> GetDefaultAssets();
49 AssetBase CreateImageAsset(string assetIdStr, string name, string filename);
50 void ForEachDefaultAsset(Action<AssetBase> action);
51 AssetBase CreateAsset(string assetIdStr, string name, string filename, bool isImage);
52 void ForEachXmlAsset(Action<AssetBase> action);
46 } 53 }
47 54
48 // could change to delegate? 55 // could change to delegate?