summaryrefslogtreecommitdiff
path: root/src/object/object90.c
diff options
context:
space:
mode:
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) {
-}