Changeset 111 for trunk/src/font.h
- Timestamp:
- Aug 14, 2010, 11:15:43 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/font.h
r100 r111 12 12 #define __DH_FONT_H__ 13 13 14 #include "asset.h" 15 14 16 class FontData; 15 17 16 class Font 18 class Font : public Asset 17 19 { 18 20 public: 19 21 Font(char const *path); 20 22 ~Font(); 23 24 protected: 25 /* Inherited from Asset */ 26 virtual Group GetGroup(); 27 virtual void TickRender(float delta_time); 28 29 public: 30 /* New methods */ 31 char const *GetName(); 21 32 22 33 void Print(int x, int y, char const *str);
Note: See TracChangeset
for help on using the changeset viewer.