Project

General

Profile

Statistics
| Revision:

root / proj / src / project / include / proj.h @ 380

History | View | Annotate | Download (684 Bytes)

1 345 up20180642
#ifndef PROJ_H_INCLUDED
2
#define PROJ_H_INCLUDED
3
4 357 up20180642
/**
5
 * @defgroup proj proj
6
 * @brief Project module.
7
 *
8
 * @{
9
 */
10
11 351 up20180642
#include "libs.h"
12
13 345 up20180642
#include "ent.h"
14
15 358 up20180642
/// @brief Crosshair
16 345 up20180642
basic_sprite_t       *bsp_crosshair;
17 358 up20180642
/// @brief Shooter
18 345 up20180642
basic_sprite_t       *bsp_shooter  ;
19 358 up20180642
/// @brief Zombie
20 345 up20180642
basic_sprite_t       *bsp_zombie   ;
21 358 up20180642
/// @brief Pistol
22 345 up20180642
basic_sprite_t       *bsp_pistol   ;
23 358 up20180642
/// @brief Nothing (just a transparent basic_sprite_t)
24 345 up20180642
basic_sprite_t       *bsp_nothing  ;
25 358 up20180642
/// @brief Bullet
26 345 up20180642
basic_sprite_t       *bsp_bullet   ;
27 358 up20180642
/// @brief Map 1
28 345 up20180642
map_t                *map1         ;
29 358 up20180642
/// @brief Crosshair sprite
30 345 up20180642
sprite_t             *sp_crosshair ;
31
32 357 up20180642
/**
33
 * @}
34
 */
35
36 345 up20180642
#endif //PROJ_H_INCLUDED