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