aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Capabilities/LLSDCapEvent.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Capabilities/LLSDCapEvent.cs (renamed from Common/OpenSim.Framework/Interfaces/Scripting/IScriptEngine.cs)16
1 files changed, 10 insertions, 6 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/Scripting/IScriptEngine.cs b/OpenSim/Region/Capabilities/LLSDCapEvent.cs
index ca50be0..d47d25c 100644
--- a/Common/OpenSim.Framework/Interfaces/Scripting/IScriptEngine.cs
+++ b/OpenSim/Region/Capabilities/LLSDCapEvent.cs
@@ -29,13 +29,17 @@ using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Text; 30using System.Text;
31 31
32namespace OpenSim.Framework.Interfaces 32namespace OpenSim.Region.Capabilities
33{ 33{
34 public interface IScriptEngine 34 [LLSDType("MAP")]
35 public class LLSDCapEvent
35 { 36 {
36 bool Init(IScriptAPI api); 37 public int id = 0;
37 string GetName(); 38 public LLSDArray events = new LLSDArray();
38 void LoadScript(string script, string scriptName, uint entityID); 39
39 void OnFrame(); 40 public LLSDCapEvent()
41 {
42
43 }
40 } 44 }
41} 45}