11 lines
208 B
C
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
|