Move simulator asset info commands to an optional module from the connector. Make them conform with service side commands.

This stops them appearing twice when Hypergrid is enabled.
This commit is contained in:
Justin Clark-Casey (justincc)
2012-01-05 20:51:49 +00:00
parent f2ff6d5186
commit 7319ba62dd
3 changed files with 138 additions and 46 deletions

View File

@@ -30,8 +30,7 @@ using OpenMetaverse;
using OpenMetaverse.Assets;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
{
/// <summary>
/// This implements the methods needed to operate on individual inventory items.
/// </summary>
@@ -39,6 +38,6 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
int Type { get; }
UUID AssetID { get; }
T RetrieveAsset<T>() where T : Asset, new();
T RetrieveAsset<T>() where T : OpenMetaverse.Assets.Asset, new();
}
}