summaryrefslogtreecommitdiff
path: root/include/entity.h
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2021-12-31 01:06:02 +0200
committerTal Hayon <talhayon1@gmail.com>2021-12-31 01:06:02 +0200
commit68973c163ba5f6aa26f03d006f472cac4d682fe3 (patch)
tree3db77f9bd1a71ec09cfb3eabace06e7ff21edeea /include/entity.h
parenta139e43d933bcb9b6baf79c0c68ce4b16e649bfa (diff)
Review Fixes
Diffstat (limited to 'include/entity.h')
-rw-r--r--include/entity.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/entity.h b/include/entity.h
index 9afeafe1..d98445b4 100644
--- a/include/entity.h
+++ b/include/entity.h
@@ -149,6 +149,10 @@ typedef struct Entity_ {
#endif
} Entity;
+typedef void(EntityAction)(Entity*);
+typedef void(*EntityActionPtr)(Entity*);
+typedef void(*const* EntityActionArray)(Entity*);
+
typedef struct LinkedList {
Entity* last;
Entity* first;