Added FunKey menu

This commit is contained in:
Vincent-FK
2021-06-10 08:09:58 +02:00
parent 9383940ce4
commit 4bc7f72f31
5 changed files with 215 additions and 332 deletions

View File

@@ -16,16 +16,19 @@
#include <assert.h>
#include "SDL.h"
#include "SDL_image.h"
#include <SDL/SDL.h>
#include <SDL/SDL_image.h>
#include <SDL/SDL_ttf.h>
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define ABS(x) (((x) < 0) ? (-x) : (x))
#ifdef HW_SCREEN_RESIZE
extern SDL_Surface *hw_screen;
#endif //HW_SCREEN_RESIZE
extern SDL_Surface *screen;
extern bool exit_game;
#ifdef SOUND_SDL_ACTIVATED
extern bool audio_init_ok;