source: trunk/src/tiler.h @ 33

Last change on this file since 33 was 22, checked in by sam, 13 years ago

Create a tile manager. There are no longer any GL calls in test-map.cpp or
in public headers. Good cleanup.

File size: 199 bytes
Line 
1
2
3/*
4 * The tile manager
5 */
6
7class TilerData;
8
9class Tiler
10{
11public:
12    Tiler();
13    ~Tiler();
14
15    void AddTile(int n, int x, int y, int z);
16
17    void Render();
18
19private:
20    TilerData *data;
21};
22
Note: See TracBrowser for help on using the repository browser.