Add the IInventoryModule interface and a sample method call

to Scene.INventory.cs
This commit is contained in:
Melanie Thielker
2008-08-17 18:41:13 +00:00
parent 1db8f6fbad
commit 40abeed7d4
3 changed files with 72 additions and 13 deletions

View File

@@ -2308,5 +2308,14 @@ namespace OpenSim.Region.Environment.Scenes
else
EventManager.TriggerStopScript(part.LocalId, itemID);
}
// public void TestFunction()
// {
// IInventoryModule imod = RequestModuleInterface<IInventoryModule>();
// if (imod == null)
// return;
//
// imod.TestFunction();
// }
}
}