From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/parsec/include/h_strmap.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/parsec/include/h_strmap.h (limited to 'src/parsec/include/h_strmap.h') 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_ + + -- cgit v1.2.3