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.
33 lines
758 B
C
33 lines
758 B
C
//
|
|
// File: llgfx_font.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
|
|
//
|
|
//
|
|
//:-----------------------------------------------------------------------------
|
|
|
|
#if !defined(LLGFX_FONT_INCLUDED)
|
|
#define LLGFX_FONT_INCLUDED
|
|
|
|
//:Include
|
|
#include "lib_base.h"
|
|
#include "llgfx.h"
|
|
|
|
|
|
|
|
//:> +------------------------------------+
|
|
//:>-------------------| Global Function Declarations |-------------------
|
|
//:> +------------------------------------+
|
|
|
|
int llgfx_LoadFont(const char * filename, s_font *font);
|
|
|
|
|
|
|
|
|
|
#endif // LLGFX_FONT_INCLUDED
|
|
|