aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-23 19:53:39 +1000
committerDavid Walter Seikel2012-01-23 19:53:39 +1000
commitc6daef3caeccec6086f693ab9fe038517015ed8d (patch)
treeba32e0afd9a0c4f39983c1e326364cbaed6cf92d /LuaSL/src/LuaSL_LSL_tree.h
parentImplement assignments. (diff)
downloadSledjHamr-c6daef3caeccec6086f693ab9fe038517015ed8d.zip
SledjHamr-c6daef3caeccec6086f693ab9fe038517015ed8d.tar.gz
SledjHamr-c6daef3caeccec6086f693ab9fe038517015ed8d.tar.bz2
SledjHamr-c6daef3caeccec6086f693ab9fe038517015ed8d.tar.xz
Make some operations valid.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 4f0ab34..687c56c 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -75,6 +75,8 @@ typedef enum
75 LSL_NOIGNORE = 64 75 LSL_NOIGNORE = 64
76} LSL_Flags; 76} LSL_Flags;
77 77
78
79// VERY IMPORTANT to keep this in sync with allowedTypes allowed[] from LuaSL_compile.c!
78typedef enum 80typedef enum
79{ 81{
80 OT_nothing, 82 OT_nothing,
@@ -90,6 +92,7 @@ typedef enum
90 OT_other, 92 OT_other,
91 93
92 OT_boolBool, 94 OT_boolBool,
95 OT_intBool,
93 OT_intInt, 96 OT_intInt,
94 OT_intFloat, 97 OT_intFloat,
95 OT_floatInt, 98 OT_floatInt,
@@ -99,8 +102,10 @@ typedef enum
99 OT_stringKey, 102 OT_stringKey,
100 OT_stringString, 103 OT_stringString,
101 OT_listList, 104 OT_listList,
105 OT_listBool,
102 OT_listInt, 106 OT_listInt,
103 OT_listFloat, 107 OT_listFloat,
108 OT_listString,
104 OT_intList, 109 OT_intList,
105 OT_floatList, 110 OT_floatList,
106 OT_listOther, 111 OT_listOther,