diff options
author | lbsa71 | 2007-10-19 08:57:30 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-19 08:57:30 +0000 |
commit | 656c72befc1d1b3d2aa29c09dd8f75ee2ef5ef8a (patch) | |
tree | c79aa6b2736c05ca2e395b53e83bbfd54e23431b /OpenSim/Framework/General | |
parent | changed the RegionID config name (that loaded from the region.xml files back ... (diff) | |
download | opensim-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.cs | 7 |
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 | */ |
28 | using System; | ||
29 | using System.Collections.Generic; | ||
28 | using libsecondlife; | 30 | using libsecondlife; |
29 | using OpenSim.Framework.Types; | 31 | using 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? |