move dirs

This commit is contained in:
2023-09-26 22:05:13 +03:00
parent 5414fa8538
commit 55d774e7d5
190 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/// @description Draw text
draw_set_font(Monogram_12);
draw_set_halign(fa_right);
var text = "Version: " + global.version + " | by emilecok";
var text_height = string_height(text);
draw_set_color(c_black);
draw_text(room_width - 10 + 1, room_height - text_height + 1, text);
draw_set_color(c_white);
draw_text(room_width - 10, room_height - text_height, text);