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

13 lines
253 B
Plaintext
Raw Normal View History

2020-12-06 12:17:04 +00:00
// draw_text(16,16,oPlayer.pv);
2020-12-06 13:02:23 +00:00
for (i = 0; i < 4; i++)
2020-12-06 12:17:04 +00:00
{
2020-12-06 13:02:23 +00:00
for(j = 0; j < 4; j++)
2020-12-06 12:17:04 +00:00
{
2020-12-06 13:02:23 +00:00
draw_text(i*16,j*16,tableau[i, j]);
2020-12-06 12:17:04 +00:00
}
}
2020-12-06 13:02:23 +00:00
if (!perdu) draw_text(160,16, string(global.minutes) + " : " + string(global.secondes));
else draw_text(160,16, "PERDU");