blob: a2a946cd5bea9a0232d817e9471cf5f0d1399194 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _PLAYER_H
#define _PLAYER_H
void player_init(uint16_t start_x, uint8_t start_y, uint8_t start_dir);
void player_update();
void player_erase();
void player_draw();
#endif /* _PLAYER_H */
|