//:Header:1, "_font", 3b940006 // // File: llgfx_sfont.h // // G A M E.O.N.E - LOW LEVEL LIB V1.0 // Copyright (C) 2001 LEVEL ONE ENTERTAINMENT, // Licensed under the terms of LGPL. //:--------------------------------------------------------------------------- //:Description // // Beschreibt einen Zeichensatz - Grafikbuffer // //:----------------------------------------------------------------------------- #if !defined(LLGFX_SFONT_INCLUDED) #define LLGFX_SFONT_INCLUDED //:>--------------------:[ font ]:-------------------- struct _font { llgfx_id gfxid; // GfxBuffer int height; // font höhe int width; // font breite // durchschnittswert s_rect crects[256]; // Src-rectangle für jedes character }; //:Custom typedef struct _font s_font; typedef struct _font llgfx_sFONT; //:End Custom #endif // LLGFX_SFONT_INCLUDED