summaryrefslogtreecommitdiff
path: root/src/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity.h')
-rw-r--r--src/entity.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entity.h b/src/entity.h
index f1b0e86..5c75ab2 100644
--- a/src/entity.h
+++ b/src/entity.h
@@ -2,6 +2,7 @@
#include "player.h"
#include "exit.h"
#include "deathpart.h"
+#include "spike.h"
#include <stdbool.h>
struct Game;
@@ -10,7 +11,8 @@ enum {
ET_NONE,
ET_player,
ET_exit,
- ET_deathpart
+ ET_deathpart,
+ ET_spike,
};
typedef struct Entity Entity;