aboutsummaryrefslogtreecommitdiff
path: root/include/entity.h
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-02-14 12:01:03 -0600
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-02-14 12:01:03 -0600
commitb5b4a5d66deefa3858bedf7bc58e6c96340e829b (patch)
tree4aa42f746be3c6ce409938796ca95175dfd1da86 /include/entity.h
parent8bd664e467f760db6f689eb9d30c3d685abe6de5 (diff)
major refactor
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_