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/stickyNickel.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/entities/stickyNickel.h (limited to 'src/entities/stickyNickel.h') diff --git a/src/entities/stickyNickel.h b/src/entities/stickyNickel.h new file mode 100644 index 0000000..b7c938e --- /dev/null +++ b/src/entities/stickyNickel.h @@ -0,0 +1,13 @@ +#include "game.h" +#include "entity.h" + +#ifndef STICKY_NICKEL_H +#define STICKY_NICKEL_H + +#define STICKY_NICKEL_WIDTH 32.0 +#define STICKY_NICKEL_HEIGHT 32.0 + +void initStickyNickel(Entity* entity); +void updateStickyNickel(Entity* entity, Game* game); + +#endif -- cgit v1.2.3