summaryrefslogtreecommitdiff
path: root/src/globals.h
blob: e4d03a1f7d85cdeeeed592137db0c9c05bab2658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef TT_INCLUDED_GLOBALS
#define TT_INCLUDED_GLOBALS


#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>
#include <SDL2/SDL_mixer.h>
#include "room.h"
#include "player.h"


extern TTF_Font *ttfont;

extern SDL_Texture *tttxr;

extern SDL_Renderer *ttrdr;

extern Mix_Music *ponpon;

extern tt_room ttmap[256];

extern tt_player ttplayer;


#endif