This commit is contained in:
2024-12-12 18:54:13 +01:00
parent f561985efe
commit 0f018cd3af
2 changed files with 1 additions and 5 deletions

2
main.c
View File

@@ -6,7 +6,7 @@
int main()
{
vect *playerPos = (vect *)malloc(sizeof(vect));
vect *targets = malloc(sizeof(vect));
vect *targets;
int nbr_targets;
unsigned short int **tab2d = creatArea2D(32);
targets = fileToTab2D("test.txt", tab2d, 32, playerPos, &nbr_targets);