Collab_RPG/src/player.c

30 lines
240 B
C
Raw Normal View History

#include "player.h"
#include "map.h"
extern struct player;
extern struct Map *map_level;
void PlayerLeft( void )
{
}
void PlayerRight( void )
{
}
void PlayerUp( void )
{
}
void PlayerDown( void )
{
}
void PlayerAction( void )
{
}