summaryrefslogtreecommitdiff
path: root/src/globals.h
blob: f189be1e2c1811b2b307ccc21e4ac4fede2c13f3 (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
26
#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 Mix_Music *ussr;

extern tt_room ttmap[256];

extern tt_player ttplayer;


#endif