diff arkanoid/levels.h @ 0:2787f5e749ae

INIT
author prymula <prymula76@outlook.com>
date Thu, 21 Sep 2023 22:33:57 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/arkanoid/levels.h	Thu Sep 21 22:33:57 2023 +0200
@@ -0,0 +1,76 @@
+// wiersze - kolumny				y   x
+char levels [64][8] = {
+//1
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"12121212",
+	"00000000",
+//2
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"21212121",
+	"12121212",
+//3
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00121200",
+	"00212100",
+	"00121200",
+	"00212100",
+//4
+	"00000000",
+	"00000000",
+	"00021000",
+	"00212100",
+	"02121210",
+	"01212120",
+	"00000000",
+	"00000000",
+//5
+	"00000000",
+	"01021010",
+	"02012020",
+	"01021010",
+	"20012002",
+	"10021001",
+	"00000000",
+	"00000000",
+//6
+	"00000000",
+	"12121212",
+	"00000000",
+	"21212121",
+	"00000000",
+	"12121212",
+	"00000000",
+	"00000000",
+//7
+	"00000000",
+	"21212121",
+	"12121212",
+	"21212121",
+	"00000000",
+	"00000000",
+	"00000000",
+	"00000000",
+//8
+	"00000000",
+	"02010201",
+	"01020102",
+	"02010201",
+	"01020102",
+	"02010201",
+	"00000000",
+	"00000000"
+
+};