This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

26 lines
376 B
C

/*
* fonts.h
*
* Created on: Dec 7, 2017
* Author: nullifiedcat
*/
#pragma once
#include "glez.h"
#include "freetype-gl.h"
typedef struct internal_font_s {
int init;
texture_font_t *font;
texture_atlas_t *atlas;
} internal_font_t;
texture_font_t *internal_font_get(glez_font_t handle);
void internal_fonts_init();
void internal_fonts_destroy();