10 lines
146 B
C
10 lines
146 B
C
|
#ifndef GLOBALS_H_
|
||
|
#define GLOBALS_H_
|
||
|
|
||
|
#include <SDL2/SDL_ttf.h>
|
||
|
|
||
|
TTF_Font *gFontLarge = NULL;
|
||
|
TTF_Font *gFontSmall = NULL;
|
||
|
|
||
|
#endif // GLOBALS_H_
|