#ifndef PLAYER_H #define PLAYER_H #include /* Struct that define player parameters */ struct Player { uint16_t x, y; uint16_t life; }; void PlayerLeft( void ); void PlayerRight( void ); void PlayerUp( void ); void PlayerDown( void ); void PlayerAction( void ); #endif