aboutsummaryrefslogtreecommitdiff
path: root/inc/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.h')
-rw-r--r--inc/entity.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/entity.h b/inc/entity.h
new file mode 100644
index 0000000..fb70067
--- /dev/null
+++ b/inc/entity.h
@@ -0,0 +1,11 @@
+#pragma once
+
+struct Entity {
+ bool active;
+ bool persist;
+ Vtable *table;
+ struct Game *g;
+ unsigned long uuid;
+ char name[256];
+ unsigned int tile;
+};