mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-01-04 07:53:39 +01:00
27 lines
260 B
C
27 lines
260 B
C
|
#ifndef PLAYER_H
|
||
|
#define PLAYER_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
|
||
|
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
|