rnd-20001201-1-src
[rocksndiamonds.git] / src / libgame / text.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  (c) 1995-98 Artsoft Entertainment                       *
5 *              Holger Schemel                              *
6 *              Oststrasse 11a                              *
7 *              33604 Bielefeld                             *
8 *              phone: ++49 +521 290471                     *
9 *              email: aeglos@valinor.owl.de                *
10 *----------------------------------------------------------*
11 *  text.h                                                  *
12 ***********************************************************/
13
14 #ifndef TEXT_H
15 #define TEXT_H
16
17 #include "libgame.h"
18
19 int getFontWidth(int, int);
20 int getFontHeight(int, int);
21 void DrawInitText(char *, int, int);
22 void DrawTextF(int, int, int, char *, ...);
23 void DrawTextFCentered(int, int, char *, ...);
24 void DrawText(int, int, char *, int, int);
25 void DrawTextExt(DrawBuffer, GC, int, int, char *, int, int);
26
27 #endif  /* TEXT_H */