X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftext.h;h=44cdbf152ac276d877ac2590a00fc7b7574b3ee6;hb=c38b8938950533926b72af227c38513fe665a8f6;hp=f7f4ddb32bab9c90b618ebdd3c821763910ce929;hpb=681721dddc91bcdaef50002d1e861cc8d484e938;p=rocksndiamonds.git diff --git a/src/libgame/text.h b/src/libgame/text.h index f7f4ddb3..44cdbf15 100644 --- a/src/libgame/text.h +++ b/src/libgame/text.h @@ -1,7 +1,7 @@ /*********************************************************** * Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1994-2001 Artsoft Entertainment * +* (c) 1994-2002 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -18,9 +18,11 @@ /* font types */ -#define FS_SMALL 0 +#define FS_INITIAL 0 #define FS_BIG 1 #define FS_MEDIUM 2 +#define FS_SMALL 3 +#define FS_TILE 4 /* font colors */ #define FC_RED 0 @@ -55,13 +57,15 @@ struct FontInfo { + Bitmap *bitmap_initial; Bitmap *bitmap_big; Bitmap *bitmap_medium; Bitmap *bitmap_small; + Bitmap *bitmap_tile; }; -void InitFontInfo(Bitmap *, Bitmap *, Bitmap *); +void InitFontInfo(Bitmap *, Bitmap *, Bitmap *, Bitmap *, Bitmap *); int getFontWidth(int, int); int getFontHeight(int, int); void DrawInitText(char *, int, int);