comparison arkanoid/levels.h @ 0:2787f5e749ae

INIT
author prymula <prymula76@outlook.com>
date Thu, 21 Sep 2023 22:33:57 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:2787f5e749ae
1 // wiersze - kolumny y x
2 char levels [64][8] = {
3 //1
4 "00000000",
5 "00000000",
6 "00000000",
7 "00000000",
8 "00000000",
9 "00000000",
10 "12121212",
11 "00000000",
12 //2
13 "00000000",
14 "00000000",
15 "00000000",
16 "00000000",
17 "00000000",
18 "00000000",
19 "21212121",
20 "12121212",
21 //3
22 "00000000",
23 "00000000",
24 "00000000",
25 "00000000",
26 "00121200",
27 "00212100",
28 "00121200",
29 "00212100",
30 //4
31 "00000000",
32 "00000000",
33 "00021000",
34 "00212100",
35 "02121210",
36 "01212120",
37 "00000000",
38 "00000000",
39 //5
40 "00000000",
41 "01021010",
42 "02012020",
43 "01021010",
44 "20012002",
45 "10021001",
46 "00000000",
47 "00000000",
48 //6
49 "00000000",
50 "12121212",
51 "00000000",
52 "21212121",
53 "00000000",
54 "12121212",
55 "00000000",
56 "00000000",
57 //7
58 "00000000",
59 "21212121",
60 "12121212",
61 "21212121",
62 "00000000",
63 "00000000",
64 "00000000",
65 "00000000",
66 //8
67 "00000000",
68 "02010201",
69 "01020102",
70 "02010201",
71 "01020102",
72 "02010201",
73 "00000000",
74 "00000000"
75
76 };