| 1 |
function gml_macro(arg0, arg1, arg2, arg3) constructor |
| 2 |
{ |
| 3 |
static h_name = undefined; |
| 4 |
static h_node = undefined; |
| 5 |
static h_is_expr = undefined; |
| 6 |
static h_is_stat = undefined; |
| 7 |
static __class__ = global.mt_gml_macro; |
| 8 |
} |
| 9 |
|
| 10 |
function gml_source(arg0, arg1, arg2, arg3) constructor |
| 11 |
{ |
| 12 |
static h_name = undefined; |
| 13 |
static h_code = undefined; |
| 14 |
static h_main = undefined; |
| 15 |
static h_length = undefined; |
| 16 |
static h_opt = undefined; |
| 17 |
static h_tokens = undefined; |
| 18 |
static h_token_count = undefined; |
| 19 |
static h___eof = undefined; |
| 20 |
|
| 21 |
static h_get_eof = function() |
| 22 |
{ |
| 23 |
return undefined; |
| 24 |
}; |
| 25 |
|
| 26 |
static h_to_string = function() |
| 27 |
{ |
| 28 |
return undefined; |
| 29 |
}; |
| 30 |
|
| 31 |
static __class__ = global.mt_gml_source; |
| 32 |
|
| 33 |
if (arg3 == undefined) |
| 34 |
arg3 = false; |
| 35 |
} |
| 36 |
|
| 37 |
function shader_set_live(arg0, arg1) |
| 38 |
{ |
| 39 |
} |
| 40 |
|
| 41 |
function live_validate_scripts() |
| 42 |
{ |
| 43 |
} |
| 44 |
|
| 45 |
global.gml_thread_status_none = [UnknownEnum.Value_0]; |
| 46 |
global.gml_thread_status_running = [UnknownEnum.Value_1]; |
| 47 |
global.gml_thread_status_waiting = [UnknownEnum.Value_2]; |
| 48 |
global.gml_thread_status_done = [UnknownEnum.Value_3]; |
| 49 |
global.gml_thread_status_error = [UnknownEnum.Value_4]; |
| 50 |
|
| 51 |
enum UnknownEnum |
| 52 |
{ |
| 53 |
Value_0, |
| 54 |
Value_1, |
| 55 |
Value_2, |
| 56 |
Value_3, |
| 57 |
Value_4 |
| 58 |
} |