#ifndef player_h #define player_h struct World; typedef struct { int entity; } Player; void init_player(Player* player, struct World* world); void update_player(Player* player, struct World* world); #endif