85:264a61e9eba0 | 86:43fe4be38a58 |
---|---|
38 string name; | 38 string name; |
39 string statename; | 39 string statename; |
40 type_e type; | 40 type_e type; |
41 int value; | 41 int value; |
42 int index; | 42 int index; |
43 | |
44 bool is_global() const | |
45 { | |
46 return statename.is_empty(); | |
47 } | |
43 }; | 48 }; |
44 | 49 |
45 extern list<script_variable> g_GlobalVariables; | 50 extern list<script_variable> g_GlobalVariables; |
46 extern list<script_variable> g_LocalVariables; | 51 extern list<script_variable> g_LocalVariables; |
47 | 52 |