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 13:17:04 +01:00

12 lines
153 B
Plaintext

// draw_text(16,16,oPlayer.pv);
for (i = 0; i < 64; i+= 16)
{
for(j = 0; j < 64; j+= 16)
{
tableau[i, j] = 1;
draw_text(i,j,tableau[i, j]);
}
}