diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-13 14:02:55 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-13 14:02:55 -0400 |
commit | 6bc81dd151c94ad72a9560761a9964e066cc53e6 (patch) | |
tree | 0c01b338ad13c94d4cea77853f7d98d12ab9bc73 /include | |
parent | 8a88ef32f41a69166280dae8f59fa6477fd3609a (diff) |
added text using freetype2
Diffstat (limited to 'include')
-rw-r--r-- | include/UIClass.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/UIClass.h b/include/UIClass.h index f12cc1e..e61bf14 100644 --- a/include/UIClass.h +++ b/include/UIClass.h @@ -5,6 +5,9 @@ class UIClass {
public:
+ void init(const char *ttf);
+ void setFontSize(unsigned int fs);
+ void putText(float x,float y,const char *s);
void handleEvents();
};
|