adventskalender-2009/src/config.c

16 lines
274 B
C
Raw Normal View History

#include "SDL.h"
#include <stdbool.h>
#include "config.h"
// Initialization for the global variables
SDL_Surface *screen = NULL;
SDL_Event event;
TTF_Font *menuFont;
bool gameRunning = true;
2009-12-14 00:28:06 +01:00
int *terrain = NULL;
enum states currentState;
int currentMenuActionState = 0;