summaryrefslogtreecommitdiff
path: root/src/object
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-03-15 01:36:01 +0200
committerTal Hayon <talhayon1@gmail.com>2022-03-15 01:36:01 +0200
commite4cd697f54cc1a56890eb89ef205e31ac3712681 (patch)
tree17ed78fc954d961bf744c858e952f4ab66266255 /src/object
parent8aa9c2876ab670cacbc6632a5cbe809993eace78 (diff)
Decompile objectA7
Diffstat (limited to 'src/object')
-rw-r--r--src/object/objectA7.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/object/objectA7.c b/src/object/objectA7.c
new file mode 100644
index 00000000..bfcd80ab
--- /dev/null
+++ b/src/object/objectA7.c
@@ -0,0 +1,11 @@
+#define NENT_DEPRECATED
+#include "entity.h"
+
+void ObjectA7(Entity* this) {
+ if (this->action == 0) {
+ this->action = 1;
+ this->spritePriority.b0 = 6;
+ InitializeAnimation(this, 0);
+ }
+ GetNextFrame(this);
+}