diff options
Diffstat (limited to 'OpenSim/Framework/IAssetProvider.cs')
-rw-r--r-- | OpenSim/Framework/IAssetProvider.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/IAssetProvider.cs b/OpenSim/Framework/IAssetProvider.cs index 4c86279..77e0d0c 100644 --- a/OpenSim/Framework/IAssetProvider.cs +++ b/OpenSim/Framework/IAssetProvider.cs | |||
@@ -29,7 +29,7 @@ using OpenMetaverse; | |||
29 | 29 | ||
30 | namespace OpenSim.Framework | 30 | namespace OpenSim.Framework |
31 | { | 31 | { |
32 | public interface IAssetProviderPlugin : IPlugin | 32 | public interface IAssetDataPlugin : IPlugin |
33 | { | 33 | { |
34 | AssetBase FetchAsset(UUID uuid); | 34 | AssetBase FetchAsset(UUID uuid); |
35 | void CreateAsset(AssetBase asset); | 35 | void CreateAsset(AssetBase asset); |
@@ -44,7 +44,7 @@ namespace OpenSim.Framework | |||
44 | public AssetDataInitialiser (string s) { connect = s; } | 44 | public AssetDataInitialiser (string s) { connect = s; } |
45 | public override void Initialise (IPlugin plugin) | 45 | public override void Initialise (IPlugin plugin) |
46 | { | 46 | { |
47 | IAssetProviderPlugin p = plugin as IAssetProviderPlugin; | 47 | IAssetDataPlugin p = plugin as IAssetDataPlugin; |
48 | p.Initialise (connect); | 48 | p.Initialise (connect); |
49 | } | 49 | } |
50 | } | 50 | } |