14 lines
268 B
C
14 lines
268 B
C
|
#ifndef EBOOK_READER_COMMON_H
|
||
|
#define EBOOK_READER_COMMON_H
|
||
|
|
||
|
#include <SDL2/SDL.h>
|
||
|
#include <SDL2/SDL_ttf.h>
|
||
|
|
||
|
extern SDL_Renderer* RENDERER;
|
||
|
extern SDL_Window* WINDOW;
|
||
|
extern SDL_Surface* WINDOW_SURFACE;
|
||
|
extern TTF_Font* ARIAL_UNICODE;
|
||
|
extern SDL_Event EVENT;
|
||
|
|
||
|
#endif
|