diff options
Diffstat (limited to 'OpenSim/Framework/General/Interfaces/IAssetServer.cs')
-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? |