FIX enemy.c

This commit is contained in:
theo3 2020-06-15 00:18:30 -07:00
parent 7478d4b98a
commit a99313e537
1 changed files with 107 additions and 103 deletions

View File

@ -2,7 +2,9 @@
#include "entity.h"
#include "enemy.h"
void (*const gEnemyFunctions[])(Entity* ent) = { Octorok,
// clang-format off
void (*const gEnemyFunctions[])(Entity* ent) = {
Octorok,
Chuchu,
Leever,
Peahat,
@ -104,4 +106,6 @@ void (*const gEnemyFunctions[])(Entity* ent) = { Octorok,
GyorgFemaleMouth,
Enemy64,
TreeItem,
Enemy66 };
Enemy66
};
// clang-format on