summaryrefslogtreecommitdiff
path: root/noncore/games/sfcave-sdl/bfont.h
Unidiff
Diffstat (limited to 'noncore/games/sfcave-sdl/bfont.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/sfcave-sdl/bfont.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/games/sfcave-sdl/bfont.h b/noncore/games/sfcave-sdl/bfont.h
index dee97f1..5c2d7e7 100644
--- a/noncore/games/sfcave-sdl/bfont.h
+++ b/noncore/games/sfcave-sdl/bfont.h
@@ -1,24 +1,24 @@
1 1
2/************************************************************ 2/************************************************************
3 3
4 BFONT v. 1.0.2 - Billi Font Library by Diego Billi 4 BFONT v. 1.0.2 - Billi Font Library by Diego Billi
5 BFONT++ C++ port by Gianluigi Davassi 5 BFONT++ C++ port by Gianluigi Davassi
6************************************************************/ 6************************************************************/
7 7
8#ifndef __BFONT_HEADER_H__ 8#ifndef __BFONT_HEADER_H__
9#define __BFONT_HEADER_H__ 9#define __BFONT_HEADER_H__
10 10
11#include <iostream> 11#include <iostream>
12#include "SDL.h" 12#include <SDL/SDL.h>
13 13
14class BFont 14class BFont
15{ 15{
16 int h; // font height 16 int h; // font height
17 SDL_Surface *Surface; // font surface 17 SDL_Surface *Surface; // font surface
18 SDL_Rect Chars[256]; // characters width 18 SDL_Rect Chars[256]; // characters width
19 const char* name; // font name 19 const char* name; // font name
20 20
21 BFont(const BFont&); 21 BFont(const BFont&);
22 22
23 void InitFont(); 23 void InitFont();
24 int count(const char *text); 24 int count(const char *text);