summary refs log tree commit diff stats
path: root/src/map.h
blob: 3c09238e69d550bd825ace744d97bee39ee814c5 (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 char* mapdata();
    const char* title();
    Map* getLeftMap();
    Map* getRightMap();
    void setLeftMap(Map* m);
    void setRightMap(Map* m);
  private:
    char* m_mapdata;
    char* m_title;
    Map* m_leftMap = 0;
    Map* m_rightMap = 0;
};

#endif