Fixed some little errors with the drawing functions.
[luagame.git] / globals.h
blob759217b773db6da3a568bd32f8c4eec26502a89f
1 /*
2 Copyright (c)2006-2007 - Brett Lajzer
4 See LICENSE for license information.
5 */
7 #ifndef _GLOBALS_H_
8 #define _GLOBALS_H_
10 #include <map>
11 #include <string>
13 #include <GL/gl.h>
14 #include <SDL/SDL.h>
15 #include <SDL/SDL_mixer.h>
16 #include "gl_surface.h"
18 extern SDL_Surface *screen;
19 extern std::map<std::string, GLSurface *> image_store;
20 extern Mix_Music * _music;
21 extern std::string _music_filename;
22 extern std::map<std::string, Mix_Chunk *> sample_cache;
23 #endif