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;
|
2019-09-03 22:17:53 +00:00
|
|
|
//extern SDL_Surface *WINDOW_SURFACE;
|
2019-09-01 21:40:08 +00:00
|
|
|
extern SDL_Renderer *RENDERER;
|
2019-09-24 02:11:56 +00:00
|
|
|
extern TTF_Font *ROBOTO_35, *ROBOTO_30, *ROBOTO_27, *ROBOTO_25, *ROBOTO_20, *ROBOTO_15;
|
2019-09-01 19:52:42 +00:00
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
#endif
|