mirror of
https://github.com/zeldaret/tmc
synced 2026-05-26 15:46:05 -04:00
f6f4d25bb9
Also ran the newline portion of format.sh and split some data files
16 lines
292 B
C
16 lines
292 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->entityType.form](this);
|
|
}
|
|
|
|
void sub_0805D268(Entity *this)
|
|
{
|
|
gUnk_08108D44[this->action](this);
|
|
}
|