Last change
on this file since 111 was
111,
checked in by sam, 11 years ago
|
The frame counter is now an asset object.
|
-
Property svn:keywords set to
Id
|
File size:
579 bytes
|
Line | |
---|
1 | // |
---|
2 | // Deus Hax (working title) |
---|
3 | // Copyright (c) 2010 Sam Hocevar <sam@hocevar.net> |
---|
4 | // |
---|
5 | |
---|
6 | // |
---|
7 | // The Font class |
---|
8 | // -------------- |
---|
9 | // |
---|
10 | |
---|
11 | #if !defined __DH_FONT_H__ |
---|
12 | #define __DH_FONT_H__ |
---|
13 | |
---|
14 | #include "asset.h" |
---|
15 | |
---|
16 | class FontData; |
---|
17 | |
---|
18 | class Font : public Asset |
---|
19 | { |
---|
20 | public: |
---|
21 | Font(char const *path); |
---|
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(); |
---|
32 | |
---|
33 | void Print(int x, int y, char const *str); |
---|
34 | |
---|
35 | private: |
---|
36 | FontData *data; |
---|
37 | }; |
---|
38 | |
---|
39 | #endif // __DH_FONT_H__ |
---|
40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.