diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-12-30 22:53:42 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-12-30 22:53:42 +0100 |
commit | 1002b8640b80c0ec4ba5c242ca2873ee1fc591d5 (patch) | |
tree | 66a34e66c3a078d9a7adc4593fa057dc0d8334dc /font.h | |
parent | da86e33dcba7d66e2e5b55efa8a7265c5d2989b9 (diff) |
Drawing text (also added Liberation font with license)
Diffstat (limited to 'font.h')
-rw-r--r-- | font.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#pragma once + +#include <SFML/Graphics.hpp> + + +class Font{ +public: + const unsigned char *filedata; + unsigned int file_len; + sf::Font sf_font; + + Font(const unsigned char *filedata,unsigned int file_len); +}; |