diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-16 12:46:44 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-16 12:46:44 -0400 |
commit | dbb26902ed54ce308fdcec4697616e152f2894fd (patch) | |
tree | 13f6d840e6b300c10a1f6ff54051c12d9a4126e4 /src/text.hpp | |
parent | 331e858d2dd0155b54b4bf9edfbbb84d3d5a8145 (diff) |
success with font loading
Diffstat (limited to 'src/text.hpp')
-rw-r--r-- | src/text.hpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/text.hpp b/src/text.hpp index 08248b3..d7fb790 100644 --- a/src/text.hpp +++ b/src/text.hpp @@ -24,12 +24,23 @@ #include <entityx/entityx.h> #include <ft2build.h> #include <freetype/freetype.h> +#include <SDL2/SDL_opengl.h> + #include <map> #include <string> +#include <tuple> #include <vector> -struct FT_Info; +struct FT_Info { + std::pair<float, float> wh; + std::pair<float, float> bl; + std::pair<float, float> ad; + GLuint tex; + + FT_Info(void) + : tex(0) {} +}; /** * @class PhysicsSystem |