You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// draw_text_shadow(x, y, text)
|
|
draw_set_color(c_black);
|
|
draw_text(argument0 + 1, argument1 + 1, argument2);
|
|
draw_set_color(c_white);
|
|
draw_text(argument0, argument1, argument2);
|