#ifndef FONTS_H
#define FONTS_H
#ifndef GRAPHICS_GFXBASE_H
#include <graphics/gfxbase.h>
#endif
#ifndef GRAPHICS_TEXT_H
#include <graphics/text.h>
#endif

#define FONTWIDTH (GfxBase->DefaultFont->tf_XSize)
#define FONTHEIGHT (GfxBase->DefaultFont->tf_YSize)
#define FONTBASELINE (GfxBase->DefaultFont->tf_Baseline)

struct FontListEntry
{
	struct Node node;
	struct TextAttr f;
	struct TextFont *font;
};

#endif
