From 32e795acb0c60a320b8449a3b7b6ee5fb5779c12 Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 25 Oct 2025 17:18:08 -0600 Subject: Switching to better entity system --- src/entities/john.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/entities/john.h (limited to 'src/entities/john.h') diff --git a/src/entities/john.h b/src/entities/john.h new file mode 100644 index 0000000..e2c1b11 --- /dev/null +++ b/src/entities/john.h @@ -0,0 +1,12 @@ +#include "game.h" +#include "entity.h" +#include "shopKeeper.h" + +#ifndef JOHN_H +#define JOHN_H + +void initJohn(Entity* entity); +void updateJohn(Entity* entity, Game* game); + +#endif + -- cgit v1.2.3