You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
849 B
C

//: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