diff options
author | Tedd Hansen | 2008-01-17 15:22:35 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-01-17 15:22:35 +0000 |
commit | 82d43db1ccbc2b13e21c88650165f82651b657e1 (patch) | |
tree | cffd57c063d69ffc670758f4c794239e1539d453 /OpenSim/Region/ScriptEngine/Common/IScript.cs | |
parent | * Added llApplyImpulse in the global frame. The object must be physical befo... (diff) | |
download | opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.zip opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.gz opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.bz2 opensim-SC_OLD-82d43db1ccbc2b13e21c88650165f82651b657e1.tar.xz |
Added data structure to be passed through event execution queue so that events can use llDetect*-commands to find information about event.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/IScript.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/IScript.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/IScript.cs b/OpenSim/Region/ScriptEngine/Common/IScript.cs index c94b187..2e1b143 100644 --- a/OpenSim/Region/ScriptEngine/Common/IScript.cs +++ b/OpenSim/Region/ScriptEngine/Common/IScript.cs | |||
@@ -26,6 +26,8 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using OpenSim.Region.ScriptEngine.Common.ScriptEngineBase; | ||
30 | |||
29 | namespace OpenSim.Region.ScriptEngine.Common | 31 | namespace OpenSim.Region.ScriptEngine.Common |
30 | { | 32 | { |
31 | public interface IScript | 33 | public interface IScript |
@@ -34,5 +36,6 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
34 | Executor Exec { get; } | 36 | Executor Exec { get; } |
35 | string Source { get; set; } | 37 | string Source { get; set; } |
36 | void Start(LSL_BuiltIn_Commands_Interface BuiltIn_Commands); | 38 | void Start(LSL_BuiltIn_Commands_Interface BuiltIn_Commands); |
39 | EventQueueManager.Queue_llDetectParams_Struct llDetectParams { get; set; } | ||
37 | } | 40 | } |
38 | } \ No newline at end of file | 41 | } \ No newline at end of file |