summaryrefslogtreecommitdiff
path: root/src/font.h
blob: 3670b50891f06344fefea52dbab62281bace1194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FONT_H
#define FONT_H

#include <SDL3_ttf/SDL_ttf.h>

#ifndef FONT_SIZE
#define FONT_SIZE 15.0f
#endif

extern TTF_Font *font;
void load_font();

#endif