1 2 3 4 5 6 7 8 9
#ifndef PLAYER_H_ #define PLAYER_H_ #include "entity.h" void add_player(float xpos, float ypos); void update_player(struct entity* player, float dt); #endif // PLAYER_H_