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/samantha.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/entities/samantha.h (limited to 'src/entities/samantha.h') diff --git a/src/entities/samantha.h b/src/entities/samantha.h new file mode 100644 index 0000000..360c9f0 --- /dev/null +++ b/src/entities/samantha.h @@ -0,0 +1,16 @@ +#include "game.h" +#include "entity.h" + +#ifndef SAMANTHA_H +#define SAMANTHA_H + +#define SAMANTHA_WIDTH (2.65966 / 2.0) +#define SAMANTHA_HEIGHT (3.21054 / 2.0) +#define SAMANTHA_THICKNESS (1.46845 / 2.0) +#define SAMANTHA_STATIC_SPEED 24 +#define SAMANTHA_STATIC_FRAMES 4 + +void initSamantha(Entity* entity); +void updateSamantha(Entity* entity, Game* game); + +#endif -- cgit v1.2.3