aboutsummaryrefslogtreecommitdiff
path: root/src/parsec/include/h_strmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsec/include/h_strmap.h')
-rw-r--r--src/parsec/include/h_strmap.h35
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_
+
+