-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
44 lines (44 loc) · 1.06 KB
/
example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"list": [
{
"name": "To Tallon Overworld South",
"edges": [
{"name": "Transport Access South", "direction": "north"}
]
},
{
"name": "Transport Access South",
"edges": [
{"name": "To Tallon Overworld South", "direction": "south"},
{"name": "Reflecting Pool", "direction": "north"}
]
},
{
"name": "Reflecting Pool",
"edges": [
{"name": "Transport Access South", "direction": "south"},
{"name": "Ante Chamber", "direction": "east"},
{"name": "Save Station 3", "direction": "west"}
]
},
{
"name": "Ante Chamber",
"edges": [
{"name": "Reflecting Pool", "direction": "west"}
]
},
{
"name": "Save Station 3",
"edges": [
{"name": "Reflecting Pool", "direction": "east"},
{"name": "To Tallon Overworld East", "direction": "west"}
]
},
{
"name": "To Tallon Overworld East",
"edges": [
{"name": "Save Station 3", "direction": "east"}
]
}
]
}