Files
horror/src/engine/render/font.h
2024-06-10 12:48:14 +03:00

11 lines
208 B
C

#ifndef FONT_H
#define FONT_H
#include <utils/maths.h>
void fontInit();
void fontShutdown();
void fontDrawString(const char* text, float x, float y, float w, float h, const Vec4& color);
#endif // !FONT_H