Moves one file to it's proper location

0.6.0-stable
Melanie Thielker 2008-08-19 15:16:48 +00:00
parent e5cdba1cb4
commit c71d6f05a7
1 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using libsecondlife; using libsecondlife;
using OpenSim.Region.Environment;
using OpenSim.Region.Environment.Scenes;
namespace OpenSim.Framework namespace OpenSim.Framework
{ {
@ -35,6 +37,7 @@ namespace OpenSim.Framework
/// </summary> /// </summary>
public interface IInventoryModule public interface IInventoryModule
{ {
// void TestFunction(); void SetRootAgentScene(LLUUID agentID, Scene scene);
bool NeedSceneCacheClear(LLUUID agentID, Scene scene);
} }
} }