aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs
index bdae95d..eb3d871 100644
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs
@@ -7,21 +7,22 @@ using System.Threading;
7 7
8namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL 8namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
9{ 9{
10 public class LSL_BaseClass : MarshalByRefObject, LSL_BuiltIn_Commands_Interface 10 [Serializable]
11 public class LSL_BaseClass : LSL_BuiltIn_Commands_Interface
11 { 12 {
12 13
13 public LSL_BuiltIn_Commands m_LSL_Functions; 14 public LSL_BuiltIn_Commands_Interface m_LSL_Functions;
14 15
15 public LSL_BaseClass() 16 public LSL_BaseClass()
16 { 17 {
17 } 18 }
18 public string State 19 public string State()
19 { 20 {
20 get { return m_LSL_Functions.State; } 21 return m_LSL_Functions.State();
21 } 22 }
22 23
23 24
24 public void Start(LSL_BuiltIn_Commands LSL_Functions) 25 public void Start(LSL_BuiltIn_Commands_Interface LSL_Functions)
25 { 26 {
26 m_LSL_Functions = LSL_Functions; 27 m_LSL_Functions = LSL_Functions;
27 28