Project

General

Profile

Statistics
| Revision:

root / proj / src / project / include / zombies.h @ 383

History | View | Annotate | Download (520 Bytes)

1 345 up20180642
#ifndef ZOMBIES_H_INCLUDED
2
#define ZOMBIES_H_INCLUDED
3
4 357 up20180642
/**
5
 * @defgroup    zombies    zombies
6
 * @ingroup proj
7
 * @ingroup singleplayer
8
 * @brief   Zombies mode.
9
 *
10
 * @{
11
 */
12
13 375 up20180655
#include "scoreboards.h"
14
15 358 up20180642
/**
16
* @brief Zombies.
17
* @return  SUCCESS if operation was successful, other value otherwise
18
*/
19 375 up20180655
int (zombies)(highscores_t *zombies_highscore);
20 345 up20180642
21 357 up20180642
/**
22 375 up20180655
 * @brief Zombies ranking.
23
 * @param zombies_highscore Highscores.
24
 */
25 376 up20180655
int (zombies_ranking)(highscores_t *zombie_highscore);
26 375 up20180655
27
/**
28 357 up20180642
 * @}
29
 */
30
31 345 up20180642
#endif //ZOMBIES_H_INCLUDED