blob: 85e024810b2a068464a00fbc80eeb752260e8723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* PARSEC HEADER: h_strmap.h
*/
#ifndef _H_STRMAP_H_
#define _H_STRMAP_H_
// external functions ---------------------------------------------------------
//
void MAP_FadeInStarmap();
void MAP_FadeOutStarmap();
void MAP_ActivateStarmap();
int MAP_ShowStarmap( void *param );
void MAP_KeyHandler();
// ----------------------------------------------------------------------------
//
struct starmap_bg_info_s {
float xpos;
float ypos;
float width;
float height;
int owidth;
int oheight;
TextureMap* texmap;
const char* texname;
};
#endif // _H_STRMAP_H_
|