source:
trunk/src/font.h
@
87
Last change on this file since 87 was 87, checked in by , 11 years ago | |
---|---|
|
|
File size: 264 bytes |
Line | |
---|---|
1 | |
2 | /* |
3 | * The font object |
4 | */ |
5 | |
6 | #if !defined __DH_FONT_H__ |
7 | #define __DH_FONT_H__ |
8 | |
9 | class FontData; |
10 | |
11 | class Font |
12 | { |
13 | public: |
14 | Font(char const *path); |
15 | ~Font(); |
16 | |
17 | void Print(int x, int y, char const *str); |
18 | |
19 | private: |
20 | FontData *data; |
21 | }; |
22 | |
23 | #endif // __DH_FONT_H__ |
24 |
Note: See TracBrowser
for help on using the repository browser.