#ifndef _PLAYER_H #define _PLAYER_H #include "utils/vector.h" typedef struct { float x, y; char power; char lives; char bombs; } player_t; #endif