/* * This software is licensed under the terms of the MIT-License * See COPYING for further information. * --- * Copyright (C) 2011, Lukas Weber */ #ifndef FONT_H #define FONT_H #include #include #include "texture.h" Texture *load_text(const char *text, TTF_Font *font); void draw_text(const char *text, int x, int y, TTF_Font *font); void init_fonts(); struct Fonts { TTF_Font *biolinum; }; extern struct Fonts _fonts; #endif