diff options
author | Melanie Thielker | 2008-09-25 06:04:47 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-09-25 06:04:47 +0000 |
commit | a3fcaef89091fea505eb9d359be87c82450db6d3 (patch) | |
tree | fa3c7244e5385b4afb0295bfdfe5a834583663b9 /OpenSim/Region/ScriptEngine/Interfaces | |
parent | Convergence is almost complete. This brings the diff between the API to < 10k (diff) | |
download | opensim-SC_OLD-a3fcaef89091fea505eb9d359be87c82450db6d3.zip opensim-SC_OLD-a3fcaef89091fea505eb9d359be87c82450db6d3.tar.gz opensim-SC_OLD-a3fcaef89091fea505eb9d359be87c82450db6d3.tar.bz2 opensim-SC_OLD-a3fcaef89091fea505eb9d359be87c82450db6d3.tar.xz |
CONVERGENCE!!!!!!
The entire LSL API is now in the single, shared file
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs
This is for both engines. The OSSL function are still separate.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Interfaces/IEventReceiver.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Interfaces/IScriptEngine.cs | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Interfaces/IEventReceiver.cs b/OpenSim/Region/ScriptEngine/Interfaces/IEventReceiver.cs index d315800..4be6a77 100644 --- a/OpenSim/Region/ScriptEngine/Interfaces/IEventReceiver.cs +++ b/OpenSim/Region/ScriptEngine/Interfaces/IEventReceiver.cs | |||
@@ -54,5 +54,8 @@ namespace OpenSim.Region.ScriptEngine.Interfaces | |||
54 | /// Post event to an entire prim | 54 | /// Post event to an entire prim |
55 | /// </summary> | 55 | /// </summary> |
56 | bool PostObjectEvent(uint localID, EventParams parms); | 56 | bool PostObjectEvent(uint localID, EventParams parms); |
57 | |||
58 | DetectParams GetDetectParams(UUID item, int number); | ||
59 | int GetStartParameter(UUID itemID); | ||
57 | } | 60 | } |
58 | } | 61 | } |
diff --git a/OpenSim/Region/ScriptEngine/Interfaces/IScriptEngine.cs b/OpenSim/Region/ScriptEngine/Interfaces/IScriptEngine.cs index e0e9e82..389af00 100644 --- a/OpenSim/Region/ScriptEngine/Interfaces/IScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/Interfaces/IScriptEngine.cs | |||
@@ -51,7 +51,6 @@ namespace OpenSim.Region.ScriptEngine.Interfaces | |||
51 | void SetScriptState(UUID itemID, bool state); | 51 | void SetScriptState(UUID itemID, bool state); |
52 | bool GetScriptState(UUID itemID); | 52 | bool GetScriptState(UUID itemID); |
53 | void SetState(UUID itemID, string newState); | 53 | void SetState(UUID itemID, string newState); |
54 | int GetStartParameter(UUID itemID); | ||
55 | 54 | ||
56 | /// <summary> | 55 | /// <summary> |
57 | /// Queue an event for execution | 56 | /// Queue an event for execution |
@@ -59,7 +58,5 @@ namespace OpenSim.Region.ScriptEngine.Interfaces | |||
59 | IScriptWorkItem QueueEventHandler(object parms); | 58 | IScriptWorkItem QueueEventHandler(object parms); |
60 | 59 | ||
61 | IScriptApi GetApi(UUID itemID, string name); | 60 | IScriptApi GetApi(UUID itemID, string name); |
62 | |||
63 | DetectParams GetDetectParams(UUID item, int number); | ||
64 | } | 61 | } |
65 | } | 62 | } |