From 6dbd16cd920b51bc24b60d0561bd707ff8862cc5 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Thu, 19 Mar 2026 09:43:11 +0300 Subject: Added Walls - And more player mechanics --- src/wall.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/wall.h (limited to 'src/wall.h') diff --git a/src/wall.h b/src/wall.h new file mode 100644 index 0000000..2a481f4 --- /dev/null +++ b/src/wall.h @@ -0,0 +1,9 @@ +#ifndef WALL_H_ +#define WALL_H_ + +#include "entity.h" + +void add_wall(float xpos, float ypos, float width, float height); +void draw_wall(const struct entity* wall); + +#endif // WALL_H_ -- cgit v1.2.3