From c71d6f05a758f2e920b6e657f3caf03dc3c4fbb1 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 19 Aug 2008 15:16:48 +0000 Subject: [PATCH] Moves one file to it's proper location --- .../Environment/Interfaces}/IInventoryModule.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename OpenSim/{Framework => Region/Environment/Interfaces}/IInventoryModule.cs (90%) diff --git a/OpenSim/Framework/IInventoryModule.cs b/OpenSim/Region/Environment/Interfaces/IInventoryModule.cs similarity index 90% rename from OpenSim/Framework/IInventoryModule.cs rename to OpenSim/Region/Environment/Interfaces/IInventoryModule.cs index 19171cdc3c..c93694a9bb 100644 --- a/OpenSim/Framework/IInventoryModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IInventoryModule.cs @@ -27,6 +27,8 @@ using System.Collections.Generic; using libsecondlife; +using OpenSim.Region.Environment; +using OpenSim.Region.Environment.Scenes; namespace OpenSim.Framework { @@ -35,6 +37,7 @@ namespace OpenSim.Framework /// public interface IInventoryModule { -// void TestFunction(); + void SetRootAgentScene(LLUUID agentID, Scene scene); + bool NeedSceneCacheClear(LLUUID agentID, Scene scene); } }