clay-ceramic/resources.h

20 lines
291 B
C++

#ifndef RESOURCES_H
#define RESOURCES_H
#include <SDL3_ttf/SDL_ttf.h>
namespace cera {
enum Font {
FONT_DEFAULT = 0,
FONT_BOLD = 1,
FONT_MAX
};
extern TTF_TextEngine *textEngine;
extern TTF_Font *defaultFont[FONT_MAX];
void SetDefaultFont(char const *path);
}
#endif // !RESOURCES_H