diff options
author | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-14 21:20:01 -0400 |
---|---|---|
committer | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-14 21:20:09 -0400 |
commit | 45e83c53ee36d8999c00ebfc474d7ef3bb103c14 (patch) | |
tree | 8d801fa25cf2f72e144165054564329fa3d71c13 /include/UIClass.h | |
parent | b04891e13dcb33ee8ea26470deae440d0c664420 (diff) |
Added mouse support, and debug
Added FPS display and deltaTime display
Diffstat (limited to 'include/UIClass.h')
-rw-r--r-- | include/UIClass.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/UIClass.h b/include/UIClass.h index 9aafbd3..62d3e7e 100644 --- a/include/UIClass.h +++ b/include/UIClass.h @@ -14,6 +14,8 @@ public: void putText(const float x,const float y,const char *s,...);
void putString(const float x,const float y,const char *s);
void handleEvents();
+
+ float mousex, mousey;
};
#endif // UICLASS_H
|