diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/h_strmap.h | |
| download | openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip | |
Diffstat (limited to 'src/parsec/include/h_strmap.h')
| -rw-r--r-- | src/parsec/include/h_strmap.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/parsec/include/h_strmap.h b/src/parsec/include/h_strmap.h new file mode 100644 index 0000000..85e0248 --- /dev/null +++ b/src/parsec/include/h_strmap.h @@ -0,0 +1,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_ + + |
