13 lines
327 B
C
13 lines
327 B
C
#ifndef EBOOK_READER_COMMON_H
|
|
#define EBOOK_READER_COMMON_H
|
|
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_ttf.h>
|
|
//#include "SDL_helper.h"
|
|
|
|
extern SDL_Window *WINDOW;
|
|
//extern SDL_Surface *WINDOW_SURFACE;
|
|
extern SDL_Renderer *RENDERER;
|
|
extern TTF_Font *ROBOTO_35, *ROBOTO_30, *ROBOTO_27, *ROBOTO_25, *ROBOTO_20, *ROBOTO_15;
|
|
|
|
#endif |