summaryrefslogtreecommitdiff
path: root/src/object/object90.c
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2022-07-23 12:43:43 +0200
committeroctorock <79596758+octorock@users.noreply.github.com>2022-07-25 22:45:55 +0200
commit852effa474c159398014da736ade6f0fea454de7 (patch)
tree97da22c4758ca4156dc9fb7ac123c7a3b0a9e9f5 /src/object/object90.c
parentccba86d292a0e4c8a0e07325ac4fb25e5a58dc89 (diff)
Rename objects
Diffstat (limited to 'src/object/object90.c')
-rw-r--r--src/object/object90.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/object/object90.c b/src/object/object90.c
deleted file mode 100644
index d975f54c..00000000
--- a/src/object/object90.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * @file object90.c
- * @ingroup Objects
- *
- * @brief Object90 object
- */
-
-#define NENT_DEPRECATED
-#include "global.h"
-#include "object.h"
-#include "functions.h"
-
-void Object90_Init(Entity*);
-void Object90_Action1(Entity*);
-
-void Object90(Entity* this) {
- static void (*const Object90_Actions[])(Entity*) = {
- Object90_Init,
- Object90_Action1,
- };
- Object90_Actions[this->action](this);
-}
-
-void Object90_Init(Entity* this) {
- this->action = 1;
- this->frameIndex = 0;
- this->spritePriority.b0 = 5;
-}
-
-void Object90_Action1(Entity* this) {
-}