ça marche bordel

This commit is contained in:
cyjullien1
2024-12-12 17:21:20 +01:00
parent d1065e68fe
commit 60d3e09293
4 changed files with 123 additions and 32 deletions

4
main.c
View File

@@ -9,5 +9,9 @@ int main()
fileToTab2D("test.txt", tab2d, 32);
screenDisplay(tab2d, 32);
printf("main\n");
vect *playerPos = (vect *)malloc(sizeof(vect));
getStartPlayerPos(tab2d,32,playerPos);
inGameLoop(tab2d,playerPos);
free(playerPos);
return 0;
}