source:
trunk/src/map.h
@
38
Last change on this file since 38 was 38, checked in by , 9 years ago | |
---|---|
|
|
File size: 199 bytes |
Line | |
---|---|
1 | |
2 | #include <cstdio> |
3 | |
4 | #include "layer.h" |
5 | #include "tiler.h" |
6 | |
7 | class Map |
8 | { |
9 | public: |
10 | Map(char const *path); |
11 | ~Map(); |
12 | |
13 | void Draw(Tiler *tiler); |
14 | |
15 | private: |
16 | Layer **layers; |
17 | int nlayers; |
18 | }; |
19 |
Note: See TracBrowser
for help on using the repository browser.