summaryrefslogtreecommitdiff
path: root/src/object
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-03-14 11:58:03 +0200
committerTal Hayon <talhayon1@gmail.com>2022-03-14 11:58:03 +0200
commit5035a3cc391d58e46bf0dccb3ba6cff240fe9234 (patch)
treedf3d70564f77c241f02c42635490030d60c08657 /src/object
parent5bb51e00476673f8fd1e816a334a1f9b8aa81d45 (diff)
Decompile object75
Diffstat (limited to 'src/object')
-rw-r--r--src/object/object75.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/object/object75.c b/src/object/object75.c
new file mode 100644
index 00000000..efd305f6
--- /dev/null
+++ b/src/object/object75.c
@@ -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);
+}