diff options
author | sfan5 <sfan5@live.de> | 2022-01-08 14:53:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-08 14:53:25 +0100 |
commit | 76dbd0d2d04712dcad4f7c6afecb97fa8d662d6d (patch) | |
tree | 248b907d2abeda0166d992bfb7b74b61cfe96d8a /src/gui/guiHyperText.h | |
parent | bf22569019749e421e8ffe0a73cff988a9a9c846 (diff) | |
download | minetest-76dbd0d2d04712dcad4f7c6afecb97fa8d662d6d.tar.xz |
Fully remove bitmap font support (#11863)
Freetype is now a build requirement.
Diffstat (limited to 'src/gui/guiHyperText.h')
-rw-r--r-- | src/gui/guiHyperText.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gui/guiHyperText.h b/src/gui/guiHyperText.h index 5b936262e..04c664df5 100644 --- a/src/gui/guiHyperText.h +++ b/src/gui/guiHyperText.h @@ -19,16 +19,17 @@ with this program; if not, write to the Free Software Foundation, Inc., #pragma once -#include "config.h" // for USE_FREETYPE +#include <vector> +#include <list> +#include <unordered_map> +#include <string> +#include "irrlichttypes_extrabloated.h" using namespace irr; class ISimpleTextureSource; class Client; - -#if USE_FREETYPE -#include "irrlicht_changes/CGUITTFont.h" -#endif +class GUIScrollBar; class ParsedText { |