-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLevelData.java
More file actions
73 lines (71 loc) · 3.21 KB
/
LevelData.java
File metadata and controls
73 lines (71 loc) · 3.21 KB
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
public class LevelData {
private String[][] Lvl = {{
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"10000000000001001100000000000000",
"10000000000100000001000000001000",
"10001001010000000000001100100000",
"11110000000000000000000000000001"}, {
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000010011100000000000000",
"00000000001000000000000000000000",
"10000000100000000000000000000000",
"10000010000000000000010000000000",
"10001000000000000000000010010000",
"11110000000000000000000000000001"}, {
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"10000000001000100000000000000000",
"10000001000000000000000000100000",
"10001000000000000000010001000000",
"11110000000000000011100000000011"}, {
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000001100000000000000",
"00000000000000010000000000000000",
"00000000000000100000000000000000",
"00000000000001000000000000000000",
"00000000000010000000000000000000",
"00000000000100000000000000000000",
"00000000001000000000000000000000",
"00000000010000000000000000000000",
"00000000100000000000000000000000",
"00000001000000000000000000000000",
"10100010000000000000000000000000",
"10000100000000000000000000000000",
"10001000000000000000000000000000",
"11110000000000000000000100010001"},
};
public String[][] getLvls() {
return Lvl;
}
}