mirror of
https://github.com/zeldaret/tmc
synced 2026-05-26 15:46:05 -04:00
14 lines
285 B
C
14 lines
285 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
|
|
extern void (*const gUnk_08108D3C[])(Entity*);
|
|
extern void (*const gUnk_08108D44[])(Entity*);
|
|
|
|
void sub_0805D250(Entity* this) {
|
|
gUnk_08108D3C[this->type](this);
|
|
}
|
|
|
|
void sub_0805D268(Entity* this) {
|
|
gUnk_08108D44[this->action](this);
|
|
}
|