aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 6273d60..3e80f50 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -146,6 +146,12 @@ typedef enum
146 ST_MODULO = 8192 // % %= 146 ST_MODULO = 8192 // % %=
147} opSubType; 147} opSubType;
148 148
149typedef enum
150{
151 MF_NONE = 0,
152 MF_LOCAL = 1
153} miscFlags;
154
149struct _allowedTypes 155struct _allowedTypes
150{ 156{
151 opType result; 157 opType result;
@@ -181,6 +187,7 @@ struct _LSL_Leaf
181#endif 187#endif
182 int line, column, len; 188 int line, column, len;
183 opType basicType; 189 opType basicType;
190 miscFlags flags;
184 union 191 union
185 { 192 {
186 float floatValue; 193 float floatValue;