-
Notifications
You must be signed in to change notification settings - Fork 0
/
game1.json
81 lines (81 loc) · 909 Bytes
/
game1.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"objects": [
{
"id": "Ground 1",
"position": {
"x": 0.0,
"y": 0.0
},
"size": {
"w": 400,
"h": 25
}
},
{
"id": "Ground 2",
"position": {
"x": 600.0,
"y": 0.0
},
"size": {
"w": 400,
"h": 25
}
},
{
"id": "Platform 1",
"position": {
"x": 100.0,
"y": 100.0
},
"size": {
"w": 100,
"h": 15
}
},
{
"id": "Platform 2",
"position": {
"x": 250.0,
"y": 200.0
},
"size": {
"w": 300,
"h": 15
}
},
{
"id": "Wall",
"position": {
"x": 800.0,
"y": 25.0
},
"size": {
"w": 30,
"h": 100
}
},
{
"id": "High Wall",
"position": {
"x": 600.0,
"y": 300.0
},
"size": {
"w": 50,
"h": 15
}
}
],
"enemies": [],
"mario": {
"starting position": {
"x": 10.0,
"y": 100.0
},
"size": {
"w": 21,
"h": 37
}
}
}