Etterna
0.74.4
Loading...
Searching...
No Matches
src
Etterna
Singletons
FontManager.h
1
/* FontManager - Interface for loading and releasing fonts. */
2
3
#ifndef FONTMANAGER_H
4
#define FONTMANAGER_H
5
6
class
Font
;
7
struct
Game
;
8
9
class
FontManager
10
{
11
public
:
12
FontManager
();
13
~FontManager
();
14
15
Font
* LoadFont(
const
std::string& sFontOrTextureFilePath,
16
std::string sChars =
""
);
17
Font
* CopyFont(
Font
* pFont);
18
void
UnloadFont(
Font
* fp);
19
// void PruneFonts();
20
};
21
22
extern
FontManager
* FONT;
// global and accessible from anywhere in our program
23
24
#endif
FontManager
Definition
FontManager.h:10
Font
Definition
Font.h:139
Game
Holds information about a particular style of a game (e.g. "single", "double").
Definition
Game.h:33
Generated by
1.9.8