source:
trunk/src/tiler.h
@
60
Last change on this file since 60 was 47, checked in by , 12 years ago | |
---|---|
File size: 276 bytes |
Line | |
---|---|
1 | |
2 | /* |
3 | * The tile manager |
4 | */ |
5 | |
6 | #if !defined __DH_TILER_H__ |
7 | #define __DH_TILER_H__ |
8 | |
9 | class TilerData; |
10 | |
11 | class Tiler |
12 | { |
13 | public: |
14 | Tiler(); |
15 | ~Tiler(); |
16 | |
17 | void AddTile(int n, int x, int y, int z); |
18 | |
19 | void Render(); |
20 | |
21 | private: |
22 | TilerData *data; |
23 | }; |
24 | |
25 | #endif // __DH_TILER_H__ |
26 |
Note: See TracBrowser
for help on using the repository browser.