aboutsummaryrefslogtreecommitdiff
path: root/include/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/entity.h')
-rw-r--r--include/entity.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/entity.h b/include/entity.h
new file mode 100644
index 0000000..b003efe
--- /dev/null
+++ b/include/entity.h
@@ -0,0 +1,13 @@
+#ifndef ENTITY_H_
+#define ENTITY_H_
+
+#include "common.h"
+
+struct entity {
+ struct point p;
+ char *disp_ch;
+ bool solid;
+ bool visible;
+};
+
+#endif // ENTITY_H_