mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 15:21:09 -04:00
06f2cd289d
Also created npc.h and format.sh'd various files. A third function is outlined in townMinish.c, but currently non-matching.
19 lines
259 B
C
19 lines
259 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
|
|
void DeleteThisEntity();
|
|
|
|
extern void (*gUnk_081208A0[])(Entity*);
|
|
|
|
void Object1D(Entity *this)
|
|
{
|
|
gUnk_081208A0[this->action](this);
|
|
}
|
|
|
|
void sub_080874F8(Entity* this)
|
|
{
|
|
DeleteThisEntity();
|
|
}
|
|
|
|
void nullsub_117(){}
|