crocparty/game/game_player.h

11 lines
231 B
C
Raw Normal View History

2024-02-28 05:07:15 +00:00
#ifndef GAME_PLAYER_H
#define GAME_PLAYER_H
void game_player_init();
void game_player_update();
2024-02-28 20:54:59 +00:00
void game_player_set_camera();
2024-02-28 05:07:15 +00:00
void game_player_draw();
2024-02-29 01:36:06 +00:00
void game_player_get_center(sys_i32* x, sys_i32* y);
2024-02-28 05:07:15 +00:00
#endif // GAME_PLAYER_H