From f95068d73410aa6d01e8ba91b430ca05d404a57b Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Tue, 26 Aug 2025 19:54:09 +0300 Subject: Added barrel, next up sprite Z-sorting(ugh) --- include/barrel_data.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/barrel_data.h (limited to 'include/barrel_data.h') diff --git a/include/barrel_data.h b/include/barrel_data.h new file mode 100644 index 0000000..0db5fdd --- /dev/null +++ b/include/barrel_data.h @@ -0,0 +1,15 @@ +#include "barrel.h" + +static const Rectangle physicsCollider = (Rectangle) { + .x = NO_OFFSET, + .y = NO_OFFSET, + .width = 100, + .height = 100 +}; + +static const Rectangle destRect = (Rectangle) { + .x = -65, + .y = -140, + .width = 230, + .height = 300 +}; -- cgit v1.2.3