add subdirs

This commit is contained in:
theo3
2020-07-13 15:27:20 -07:00
parent c47f16e5e7
commit 62ddaaa5f6
77 changed files with 138 additions and 186 deletions
+21
View File
@@ -0,0 +1,21 @@
#include "entity.h"
#include "global.h"
extern void (*gUnk_08123384[])(Entity*);
void Bell(Entity* ent) {
gUnk_08123384[ent->action](ent);
}
void sub_08097D90(Entity* ent) {
ent->action = 1;
ent->spriteSettings.b.draw = 1;
ent->collisionLayer = 1;
ent->spritePriority.b0 = 0;
UpdateSpriteForCollisionLayer(ent);
InitAnimationForceUpdate(ent, 0);
}
void sub_08097DCC(Entity* ent) {
UpdateAnimationSingleFrame(ent);
}