diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-10-28 16:27:07 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-10-28 16:27:07 +0200 |
| commit | f2522c04446bb4bd597a8625f9398e67ff957565 (patch) | |
| tree | bd5e7506a434978296397b9d0a0e95bf3ae04d60 /src/zombies.c | |
| parent | 1ac22220f6077b3367456384b4bb563f1c5c2d29 (diff) | |
more sounds
Diffstat (limited to 'src/zombies.c')
| -rw-r--r-- | src/zombies.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zombies.c b/src/zombies.c index c72e04b..4c1225a 100644 --- a/src/zombies.c +++ b/src/zombies.c @@ -46,6 +46,7 @@ void spawn_zombie(int x, int y) { zombies[i].path = array_create(sizeof(vec2f)); zombies[i].next_path = array_create(sizeof(vec2f)); zombies[i].alive = true; + zombies[i].type = ZOMBIE_TYPE_NORMAL; zombies[i].health = 100.0f; zombies[i].position = (vec3f){x,y, 0}; zombies[i].size = (vec3f){0.4, 0.4, 1}; |
