blob: 56bbd225be3d9f7065a1dc084ee920af5c594280 (
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);
void player_update();
void player_erase();
void player_draw();
#endif /* _PLAYER_H */
|