2019-09-01 19:52:42 +00:00
|
|
|
#ifndef EBOOK_READER_COMMON_H
|
|
|
|
#define EBOOK_READER_COMMON_H
|
|
|
|
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <SDL2/SDL_ttf.h>
|
2019-09-03 00:01:34 +00:00
|
|
|
//#include "SDL_helper.h"
|
2019-09-01 19:52:42 +00:00
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
extern SDL_Window *WINDOW;
|
|
|
|
extern SDL_Surface *WINDOW_SURFACE;
|
|
|
|
extern SDL_Renderer *RENDERER;
|
2019-09-02 20:24:09 +00:00
|
|
|
extern TTF_Font *ARIAL;
|
2019-09-01 19:52:42 +00:00
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
#endif
|