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 "entity.h"
|
||||||
#include "enemy.h"
|
#include "enemy.h"
|
||||||
|
|
||||||
void (*const gEnemyFunctions[])(Entity* ent) = { Octorok,
|
// clang-format off
|
||||||
|
void (*const gEnemyFunctions[])(Entity* ent) = {
|
||||||
|
Octorok,
|
||||||
Chuchu,
|
Chuchu,
|
||||||
Leever,
|
Leever,
|
||||||
Peahat,
|
Peahat,
|
||||||
|
@ -104,4 +106,6 @@ void (*const gEnemyFunctions[])(Entity* ent) = { Octorok,
|
||||||
GyorgFemaleMouth,
|
GyorgFemaleMouth,
|
||||||
Enemy64,
|
Enemy64,
|
||||||
TreeItem,
|
TreeItem,
|
||||||
Enemy66 };
|
Enemy66
|
||||||
|
};
|
||||||
|
// clang-format on
|
Loading…
Reference in New Issue