10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
|
function __init_global() {
|
||
|
gml_pragma( "global", "__init_global();");
|
||
|
|
||
|
// set any global defaults
|
||
|
layer_force_draw_depth(true,0); // force all layers to draw at depth 0
|
||
|
draw_set_colour( c_black );
|
||
|
|
||
|
|
||
|
}
|