#pragma once #include "entity.h" struct Player { struct Entity; float spd_x; float spd_y; float rem_x; float rem_y; }; void player_init(struct Player *restrict, int x, int y);