adventskalender-2009/src/config.c
2009-12-19 21:57:22 +01:00

18 lines
295 B
C

#include "SDL.h"
#include <stdbool.h>
#include "config.h"
bool DEBUG = false;
// Initialization for the global variables
SDL_Surface *screen = NULL;
SDL_Event event;
TTF_Font *menuFont;
bool gameRunning = true;
int *terrain = NULL;
enum states currentState;
int currentMenuActionState = 0;