Decompile object76

This commit is contained in:
Tal Hayon
2022-03-14 11:59:31 +02:00
parent 5035a3cc39
commit 34453788ab
4 changed files with 16 additions and 32 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 Object76(Entity* this) {
static void (*const actionFuncs[])(Entity*) = {
sub_0808C964,
sub_0808CA10,
};
actionFuncs[this->action](this);
}