mirror of
https://github.com/zeldaret/tmc
synced 2026-05-25 23:35:29 -04:00
17 lines
326 B
C
17 lines
326 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
|
|
extern void sub_0806ED78();
|
|
extern void sub_08067C44();
|
|
|
|
extern void (*gCat[9])(Entity*);
|
|
|
|
// Main
|
|
void Cat(Entity* ent) {
|
|
gCat[ent->action](ent);
|
|
sub_08067C44(ent);
|
|
if (((ent->flags & 128) == 0) && ((ent->entityType).parameter1 != 5)) {
|
|
sub_0806ED78(ent);
|
|
}
|
|
}
|