4
0
Fork 0
This repository has been archived on 2023-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
surprise_dungeon/objects/oGame/Draw_64.gml
2020-12-06 14:59:53 +01:00

15 lines
291 B
Plaintext

// draw_text(16,16,oPlayer.pv);
for (i = 0; i < 4; i++)
{
for(j = 0; j < 4; j++)
{
draw_text(i*16,j*16,tableau[i, j]);
}
}
if (!perdu) draw_text(160,16, string(global.minutes) + " : " + string(global.secondes));
else draw_text(160,16, "PERDU");
draw_text(320,16,global.difficulty);