mirror of
https://github.com/zeldaret/tmc
synced 2026-05-28 00:16:13 -04:00
13 lines
260 B
C
13 lines
260 B
C
#include "entity.h"
|
|
|
|
void sub_0808C964(Entity*);
|
|
void sub_0808CA10(Entity*);
|
|
|
|
void MacroMushromStalks(Entity* this) {
|
|
static void (*const actionFuncs[])(Entity*) = {
|
|
sub_0808C964,
|
|
sub_0808CA10,
|
|
};
|
|
actionFuncs[this->action](this);
|
|
}
|