mirror of https://github.com/zeldaret/tmc.git
FIX enemy.c
This commit is contained in:
parent
7478d4b98a
commit
a99313e537
|
@ -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
|
Loading…
Reference in New Issue