-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap_config.cpp
More file actions
22 lines (21 loc) · 837 Bytes
/
map_config.cpp
File metadata and controls
22 lines (21 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "map_config.h"
#include "mnode.h"
#include <list>
using std::list;
map<ENodeType, list<pair<int, int>>> MapConfig::TerrainMap =
{
{ENodeType::BARRIER,
{
{13,4},{14,4},{15,4}, {15,4},{16,4}, {17,4},{18,4},{19,4},
{13,5},{14,5},{15,5}, {15,5},{16,5}, {17,5},{18,5},{19,5},
{0,4},{1,4},{2,4}, {3,4},{4,4}, {5,4},{6,4},{7,4},{8,4},{9,4},{10,4},{11,4},{11,5},{11,6},{11,7},{11,8},{11,9},{11,10},{11,11},
{0,5},{1,5},{2,5}, {3,5},{4,5}, {5,5},{6,5},{7,5},
}
},
{ENodeType::WATER,
{
// {2,12},{3,12},{4,12},{5,12},{6,12},{7, 12}, {8,12}, {9,12},{10,12},{11,12},{12,12},
// {2,13},{3,13},{4,13},{5,13},{6,13},{7, 13}, {8,13}, {9,13},{10,13},{11,13},{12,13},
}
}
};