ref: 1f88f7ffafd7c9fbc9ee54e4d8363c1c2dcc9b28
dir: /src/Font.h/
#pragma once #include <stddef.h> #include "Backends/Rendering.h" typedef struct FontObject FontObject; FontObject* LoadFontFromData(const unsigned char *data, size_t data_size, size_t cell_width, size_t cell_height); FontObject* LoadFont(const char *font_filename, size_t cell_width, size_t cell_height); void DrawText(FontObject *font_object, RenderBackend_Surface *surface, int x, int y, unsigned long colour, const char *string); void UnloadFont(FontObject *font_object);