mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-09 12:22:34 +01:00
4fd92a1549
Also move up source files into the root directory, as there's nothing else in this directory
19 lines
316 B
C++
19 lines
316 B
C++
#ifndef _RWLIB_FONTS_FONTMAPGTA3_HPP_
|
|
#define _RWLIB_FONTS_FONTMAPGTA3_HPP_
|
|
|
|
#include "FontMap.hpp"
|
|
|
|
#include <array>
|
|
|
|
/**
|
|
* Commong font mapping of all fonts.
|
|
*/
|
|
extern const FontMap fontmap_gta3_font_common;
|
|
|
|
/**
|
|
* Array of all font mappings.
|
|
*/
|
|
extern const std::array<FontMap, 3> fontmaps_gta3_font;
|
|
|
|
#endif
|