1
0
Fork 0
LithOS3/lithos_c/inc/Lth_font.h

46 lines
983 B
C

//-----------------------------------------------------------------------------
//
// Copyright © 2016 Project Golan
//
// See "LICENSE" for more information.
//
//-----------------------------------------------------------------------------
//
// Font layout handling.
//
//-----------------------------------------------------------------------------
#ifndef lithos3__Lth_font_h
#define lithos3__Lth_font_h
//----------------------------------------------------------------------------|
// Type Definitions |
//
//
// Lth_Glyph
//
typedef struct Lth_Glyph
{
int w, h;
} Lth_Glyph;
//
// Lth_Font
//
typedef struct Lth_Font
{
__str name;
Lth_Glyph glyphs[126];
} Lth_Font;
//----------------------------------------------------------------------------|
// Extern Functions |
//
Lth_Font *Lth_FontNew(char const *name);
#endif//lithos3__Lth_font_h