blob: 1b9449f427bdd4efe2ce9415b30a8a83c2129cf3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GAME_PRIVATE_H
#define GAME_PRIVATE_H
#ifdef __cplusplus
extern "C"
{
#endif
int game_resinit(void);
void game_free(void);
#ifdef __cplusplus
}
#endif
#endif /* GAME_PRIVATE_H */
|