#ifndef player_h #define player_h struct Services; typedef struct { int p[3]; int r[2]; int f[2], l[2]; } Player; void init_player(Player* p); void update_player(Player* p, struct Services* s); void push_player_cam(const Player* p); void pop_player_cam(void); #endif