This commit is contained in:
2025-04-30 19:01:44 +02:00
parent 451e80f750
commit 429627c095
10 changed files with 100 additions and 73 deletions

View File

@@ -31,7 +31,8 @@ void generateTestMap() {
tileMap[y][x].type = TYPE_BELT;
tileMap[y][x].frameOffset = 0;
//tileMap[y][x].direction = ((x + y) % 4 * 2) + 1;
tileMap[y][x].direction = 5;
//tileMap[y][x].direction = 5;
tileMap[y][x].direction = (rand() % 4 * 2) + 1;
}
}
}