diff options
| author | BoredGuy <osome3717@gmail.com> | 2026-03-19 09:43:11 +0300 |
|---|---|---|
| committer | BoredGuy <osome3717@gmail.com> | 2026-03-19 09:43:11 +0300 |
| commit | 6dbd16cd920b51bc24b60d0561bd707ff8862cc5 (patch) | |
| tree | 34add659f1ddb15be4a817b66dbf7c9c194c1576 /src/wall.h | |
| parent | 9b63c2572ee6d8b73fd0d2f298dc339335875607 (diff) | |
Added Walls
- And more player mechanics
Diffstat (limited to 'src/wall.h')
| -rw-r--r-- | src/wall.h | 9 |
1 files changed, 9 insertions, 0 deletions
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_ |
