add missing tools/pngdump to the repo
[gbajam22] / src / game.h
index 66928f8..fda696d 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef GAME_H_
 #define GAME_H_
 
+#include <stdint.h>
+
 struct screen {
        char *name;
        int (*start)(void);
@@ -15,4 +17,10 @@ int init_screens(void);
 int change_screen(struct screen *scr);
 struct screen *find_screen(const char *name);
 
+int gba_colors;
+
+#ifndef BUILD_GBA
+int32_t view_dtheta, view_dphi, view_zoom;
+#endif
+
 #endif /* GAME_H_ */