diff options
| author | theo3 <arisstephenson2@gmail.com> | 2020-07-13 15:27:20 -0700 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2020-07-13 15:27:20 -0700 |
| commit | 62ddaaa5f6fe2dc2aaa2dd002d4ce0b1d61a3cc9 (patch) | |
| tree | d625ad1b183fc6aa5b56c00ce6573ef850679731 /src/object/object1D.c | |
| parent | c47f16e5e7b0abb010133b3ee1a58099d8b8915d (diff) | |
add subdirs
Diffstat (limited to 'src/object/object1D.c')
| -rw-r--r-- | src/object/object1D.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/object/object1D.c b/src/object/object1D.c new file mode 100644 index 00000000..1912facb --- /dev/null +++ b/src/object/object1D.c @@ -0,0 +1,18 @@ +#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(Entity* this){} |
