#ifndef PLAYER_H #define PLAYER_H #include 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