27 lines
No EOL
355 B
Text
27 lines
No EOL
355 B
Text
/// @description Insérez la description ici
|
|
// Vous pouvez écrire votre code dans cet éditeur
|
|
|
|
for (i = 0; i < 4; i++)
|
|
{
|
|
for(j = 0; j < 4; j++)
|
|
{
|
|
tableau[i, j] = irandom(10);
|
|
|
|
}
|
|
}
|
|
|
|
global.difficulty = 1;
|
|
global.minutes = 1;
|
|
global.secondes = 20;
|
|
|
|
enum transition {
|
|
left,
|
|
right,
|
|
up,
|
|
down
|
|
}
|
|
|
|
perdu = false;
|
|
|
|
posX = irandom(3);
|
|
posY = irandom(3); |