21 lines
315 B
C
21 lines
315 B
C
#ifndef DEFS_H
|
|
#define DEFS_H
|
|
|
|
#include <clay/clay.h>
|
|
|
|
#include <SDL3/SDL.h>
|
|
#include <SDL3_ttf/SDL_ttf.h>
|
|
|
|
enum Font {
|
|
FONT_DEFAULT = 0,
|
|
FONT_BOLD = 1,
|
|
FONT_MAX
|
|
};
|
|
|
|
extern SDL_Window *window;
|
|
extern SDL_Renderer *renderer;
|
|
extern TTF_Font *fonts[FONT_MAX];
|
|
extern TTF_TextEngine *textEngine;
|
|
|
|
#endif // !DEFS_H
|