From be5c7263406aef867501c7965bcced6a7e2898a6 Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 29 Sep 2024 16:39:31 +1000 Subject: animation, player movement, physics etc. --- obj.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 obj.h (limited to 'obj.h') diff --git a/obj.h b/obj.h new file mode 100644 index 0000000..9a331b7 --- /dev/null +++ b/obj.h @@ -0,0 +1,32 @@ +#ifndef obj_h +#define obj_h + +#include "rect.h" + +struct App; +struct Renderer; +struct Map; + +typedef enum { + face_left, + face_right +} Face; + +typedef struct { + int x, y, vx, vy; + int frame; + int anim; + int grounded, headbutted, on_ramp, jumping; + Face face; + Rect rect; +} Player; + +void init_player(Player* p); +void update_player( + Player* p, + struct App* app, + const struct Map* map +); +void ren_player(Player* p, struct Renderer* r); + +#endif -- cgit v1.2.3-54-g00ecf