Decompile object75

This commit is contained in:
Tal Hayon
2022-03-14 11:58:03 +02:00
parent 5bb51e0047
commit 5035a3cc39
4 changed files with 16 additions and 31 deletions
+14
View File
@@ -0,0 +1,14 @@
#define NENT_DEPRECATED
#include "entity.h"
extern void sub_0808C964(Entity*);
extern void sub_0808CA10(Entity*);
void Object75(Entity* this) {
static void (*const actionFuncs[])(Entity*) = {
sub_0808C964,
sub_0808CA10,
};
actionFuncs[this->action](this);
}