Alter tests to match up with the results after tyre's patch

This commit is contained in:
Melanie Thielker
2008-09-23 12:17:21 +00:00
parent 44e566260c
commit dffa6567e8
2 changed files with 19 additions and 29 deletions

View File

@@ -40,7 +40,7 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
/// An interface for a script API module to communicate with
/// the engine it's running under
/// </summary>
public interface IScriptEngine
public interface IScriptEngine : IEventReceiver
{
Scene World { get; }
IConfig Config { get; }
@@ -48,16 +48,6 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
ILog Log { get; }
string ScriptEngineName { get; }
/// <summary>
/// Post an event to a single script
/// </summary>
bool PostScriptEvent(UUID itemID, EventParams parms);
/// <summary>
/// Post event to an entire prim
/// </summary>
bool PostObjectEvent(uint localID, EventParams parms);
void ApiResetScript(UUID itemID);
void ResetScript(UUID itemID);
void SetScriptState(UUID itemID, bool state);