blob: 5d8a557b66f6c8d1d83be03a241e1ac41ac37f37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef HUMAN_PLAYER_PRIVATE_H
#define HUMAN_PLAYER_PRIVATE_H
#include <human_player.h>
#ifdef __cplusplus
extern "C"
{
#endif
void human_player_gui_update(struct human_player *h);
int human_player_gui_render(const struct human_player *h);
#ifdef __cplusplus
}
#endif
#endif /* HUMAN_PLAYER_PRIVATE_H */
|