aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs')
-rw-r--r--OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs
index 1c432f2..fd81f30 100644
--- a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs
+++ b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass.cs
@@ -39,7 +39,8 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO
39 public Dictionary<uint, object> GlobalVariables = new Dictionary<uint, object>(); 39 public Dictionary<uint, object> GlobalVariables = new Dictionary<uint, object>();
40 public Dictionary<uint, object> LocalVariables = new Dictionary<uint, object>(); 40 public Dictionary<uint, object> LocalVariables = new Dictionary<uint, object>();
41 //public System.Collections.Generic.List<string> FunctionList = new System.Collections.Generic.List<string>(); 41 //public System.Collections.Generic.List<string> FunctionList = new System.Collections.Generic.List<string>();
42 //public void AddFunction(String x) { 42 //public void AddFunction(String x)
43 //{
43 // FunctionList.Add(x); 44 // FunctionList.Add(x);
44 //} 45 //}
45 //public Stack<StackItemStruct> LSLStack = new Stack<StackItemStruct>; 46 //public Stack<StackItemStruct> LSLStack = new Stack<StackItemStruct>;
@@ -56,12 +57,10 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO
56 return LSL_Builtins; 57 return LSL_Builtins;
57 } 58 }
58 59
59
60 public LSL_BaseClass() 60 public LSL_BaseClass()
61 { 61 {
62 } 62 }
63 63
64
65 public virtual int OverrideMe() 64 public virtual int OverrideMe()
66 { 65 {
67 return 0; 66 return 0;
@@ -72,8 +71,6 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO
72 LSL_Builtins = LSLBuiltins; 71 LSL_Builtins = LSLBuiltins;
73 72
74 Common.SendToLog("OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO.LSL_BaseClass.Start() called"); 73 Common.SendToLog("OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO.LSL_BaseClass.Start() called");
75 //LSL_Builtins.llSay(0, "Test");
76 return;
77 } 74 }
78 75
79 public void AddToStatic(UInt32 index, object obj) 76 public void AddToStatic(UInt32 index, object obj)