root / proj / project / include / proj.h @ 357
History | View | Annotate | Download (490 Bytes)
1 |
#ifndef PROJ_H_INCLUDED
|
---|---|
2 |
#define PROJ_H_INCLUDED
|
3 |
|
4 |
/**
|
5 |
* @defgroup proj proj
|
6 |
* @brief Project module.
|
7 |
*
|
8 |
* @{
|
9 |
*/
|
10 |
|
11 |
#include "libs.h" |
12 |
|
13 |
#include "ent.h" |
14 |
|
15 |
basic_sprite_t *bsp_crosshair; |
16 |
basic_sprite_t *bsp_shooter ; |
17 |
basic_sprite_t *bsp_zombie ; |
18 |
basic_sprite_t *bsp_pistol ; |
19 |
basic_sprite_t *bsp_nothing ; |
20 |
basic_sprite_t *bsp_bullet ; |
21 |
map_t *map1 ; |
22 |
sprite_t *sp_crosshair ; |
23 |
|
24 |
/**
|
25 |
* @}
|
26 |
*/
|
27 |
|
28 |
#endif //PROJ_H_INCLUDED |