root / proj / src / project / include / zombies.h @ 397
History | View | Annotate | Download (520 Bytes)
1 |
#ifndef ZOMBIES_H_INCLUDED
|
---|---|
2 |
#define ZOMBIES_H_INCLUDED
|
3 |
|
4 |
/**
|
5 |
* @defgroup zombies zombies
|
6 |
* @ingroup proj
|
7 |
* @ingroup singleplayer
|
8 |
* @brief Zombies mode.
|
9 |
*
|
10 |
* @{
|
11 |
*/
|
12 |
|
13 |
#include "scoreboards.h" |
14 |
|
15 |
/**
|
16 |
* @brief Zombies.
|
17 |
* @return SUCCESS if operation was successful, other value otherwise
|
18 |
*/
|
19 |
int (zombies)(highscores_t *zombies_highscore);
|
20 |
|
21 |
/**
|
22 |
* @brief Zombies ranking.
|
23 |
* @param zombies_highscore Highscores.
|
24 |
*/
|
25 |
int (zombies_ranking)(highscores_t *zombie_highscore);
|
26 |
|
27 |
/**
|
28 |
* @}
|
29 |
*/
|
30 |
|
31 |
#endif //ZOMBIES_H_INCLUDED |