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/Create_0.gml

27 lines
355 B
Plaintext
Raw Normal View History

2020-12-06 00:04:50 +00:00
/// @description Insérez la description ici
// Vous pouvez écrire votre code dans cet éditeur
2020-12-06 13:02:23 +00:00
for (i = 0; i < 4; i++)
{
for(j = 0; j < 4; j++)
{
tableau[i, j] = irandom(10);
2020-12-06 00:04:50 +00:00
2020-12-06 13:02:23 +00:00
}
}
2020-12-06 00:04:50 +00:00
2020-12-06 13:02:23 +00:00
global.difficulty = 1;
global.minutes = 1;
global.secondes = 20;
2020-12-06 13:34:06 +00:00
enum transition {
left,
right,
up,
down
}
2020-12-06 13:02:23 +00:00
perdu = false;
2020-12-06 00:04:50 +00:00
2020-12-06 13:02:23 +00:00
posX = irandom(3);
posY = irandom(3);