summaryrefslogtreecommitdiff
path: root/src/globals.h
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2021-03-02 18:19:35 +0300
committerAleksey Veresov <aleksey@veresov.pro>2021-03-02 18:19:35 +0300
commit9d08026e70c3a474182a7b76c25fd9cf53abdf57 (patch)
treee4e764f1c2fe49b8602a2b488c06f43c83fa1f86 /src/globals.h
parent4eee65fb27adab195301c77e6f8b250972061172 (diff)
downloadtakethis-9d08026e70c3a474182a7b76c25fd9cf53abdf57.tar
takethis-9d08026e70c3a474182a7b76c25fd9cf53abdf57.tar.xz
takethis-9d08026e70c3a474182a7b76c25fd9cf53abdf57.zip
Fullscreen, etc...
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/globals.h b/src/globals.h
index c17732c..bfd6c5e 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1,13 +1,13 @@
#ifndef TT_INCLUDED_GLOBALS
#define TT_INCLUDED_GLOBALS
-
+#include "player.h"
+#include "room.h"
#include <SDL2/SDL.h>
-#include <SDL2/SDL_ttf.h>
#include <SDL2/SDL_mixer.h>
-#include "room.h"
-#include "player.h"
+#include <SDL2/SDL_ttf.h>
+extern SDL_Window *ttwdw;
extern TTF_Font *ttfont;
@@ -25,5 +25,4 @@ extern tt_room ttmap[256];
extern tt_player ttplayer;
-
#endif