From b57c21da92563eed58867a9a6b02c201006cbc57 Mon Sep 17 00:00:00 2001 From: jacob janzen <53062115+JacobJanzen@users.noreply.github.com> Date: Wed, 14 Feb 2024 15:52:57 -0600 Subject: Automake (#2) * gnu autotools build * ignore dist --- src/entity.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/entity.h (limited to 'src/entity.h') diff --git a/src/entity.h b/src/entity.h new file mode 100644 index 0000000..b003efe --- /dev/null +++ b/src/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_ -- cgit v1.2.3