From f9aff3e20795be5ee76769fb3ecc461e9917a116 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 11 Sep 2019 15:32:06 -0400 Subject: added font loading code, untested --- src/text.hpp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'src/text.hpp') diff --git a/src/text.hpp b/src/text.hpp index 183e655..a0fd737 100644 --- a/src/text.hpp +++ b/src/text.hpp @@ -22,7 +22,15 @@ #define SYSTEM_TEXT_HPP_ #include -#include +#include +#include + +#include +#include +#include + +struct FT_Info; +struct vec2 { float x; float y; }; /** * @class PhysicsSystem @@ -43,6 +51,13 @@ public: void update(entityx::EntityManager& entites, entityx::EventManager& events, entityx::TimeDelta dt) final; + + void loadFont(const std::string& name, const std::string& file, int size); + +private: + FT_Library freetype; + std::map fonts; + std::map> fontData; }; #endif // SYSTEM_TEXT_HPP_ -- cgit v1.2.3