Fixed a build problem.
[gljewel.git] / text.h
blob6c02aeea7606d82095061057c7a4dc02bfd7cd28
1 /**
2 * @file text.h
3 * @brief The interface of the text display module for gljewel.
5 * Copyright 2008 Stephen M. Webb <stephen.webb@bregmasoft.ca>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of Version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #ifndef GLJEWEL_TEXT_H_
21 #define GLJEWEL_TEXT_H_
23 #define FONTSIZE 0.015f
25 void drawstring(int align, char *fmt, ...);
26 void initfont(void);
28 #endif /* GLJEWEL_TEXT_H_ */