blob: 2acce59be3b6b245d5b994e1598e1c33df8ef5d7 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | #ifndef MAP_H
#define MAP_H
class Map {
  public:
    Map(char* filename);
    ~Map();
    const int* mapdata();
    const char* title();
    Map* getLeftMap();
    Map* getRightMap();
    void setLeftMap(Map* m);
    void setRightMap(Map* m);
  private:
    int* m_mapdata;
    char* m_title;
    Map* m_leftMap = 0;
    Map* m_rightMap = 0;
};
#endif
 |