ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
fontlib.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  *
21  * Based on the original sources
22  * Faery Tale II -- The Halls of the Dead
23  * (c) 1993-1996 The Wyrmkeep Entertainment Co.
24  */
25 
26 #ifndef SAGA2_FONTLIB_H
27 #define SAGA2_FONTLIB_H
28 
29 namespace Saga2 {
30 
31 // The Agate family
32 
33 extern gFont Agate6Font,
34  Agate7Font,
35  Agate8Font,
36  Agate11Font;
37 
38 // The Helv family (Oh, yeah, like that's it's real name...)
39 
40 extern gFont Helv7Font,
41  Helv8Font,
42  Helv9Font,
43  Helv11Font,
44  Helv13Font,
45  Helv15Font,
46  Helv18Font,
47  Helv24Font;
48 
49 // The Juno family
50 
51 extern gFont Juno10Font;
52 
53 // The Onyx family
54 
55 extern gFont Onyx10Font;
56 
57 // The Plate family
58 
59 extern gFont Plate18Font;
60 
61 // The Script family
62 
63 extern gFont Script10Font;
64 
65 // The Amber family
66 
67 extern gFont Amber9Font,
68  Amber11Font,
69  Amber13Font;
70 
71 // Fixed-width fonts
72 
73 extern gFont Fix8Font,
74  ThinFix8Font;
75 
76 } // namespace Saga2
77 
78 #endif
Definition: actor.h:32