mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2025-02-24 18:40:02 +00:00
16 lines
238 B
C++
16 lines
238 B
C++
#ifndef FONT_MANAGER_H
|
|
#define FONT_MANAGER_H
|
|
|
|
#include "text_font.h"
|
|
|
|
namespace fallout {
|
|
|
|
extern FontManager gModernFontManager;
|
|
|
|
int interfaceFontsInit();
|
|
void interfaceFontsExit();
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* FONT_MANAGER_H */
|