mirror of
https://github.com/zeldaret/tmc
synced 2026-05-28 08:25:51 -04:00
15 lines
289 B
C
15 lines
289 B
C
#define NENT_DEPRECATED
|
|
#include "entity.h"
|
|
|
|
extern void sub_0808C964(Entity*);
|
|
extern void sub_0808CA10(Entity*);
|
|
|
|
void Object76(Entity* this) {
|
|
static void (*const actionFuncs[])(Entity*) = {
|
|
sub_0808C964,
|
|
sub_0808CA10,
|
|
};
|
|
|
|
actionFuncs[this->action](this);
|
|
}
|