summaryrefslogtreecommitdiff
path: root/World.cpp
diff options
context:
space:
mode:
authormiguel <miguel@localhost>2017-09-14 09:14:30 +0200
committermiguel <miguel@localhost>2017-09-14 09:14:30 +0200
commit551d539fc2b4612683611a64f0e0a97a5244d8f3 (patch)
treedc2ffb2c7a3430f0f5a80208f368fb8e02518ca7 /World.cpp
parent1555b96b32a919c3e3b9e44ac1d80dab005d9ab8 (diff)
added scaling support
Diffstat (limited to 'World.cpp')
-rw-r--r--World.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/World.cpp b/World.cpp
index 04801f5..5d17d42 100644
--- a/World.cpp
+++ b/World.cpp
@@ -39,9 +39,9 @@ void World::next_level()
reset();
bricks=
{
- { {0,1} },
- { {0,1} },
- { {0,1} },
+ { {0,2} },
+ { {0,2} },
+ { {0,2} },
{ {0,0},{5,1} },
{ {0,0},{5,1} },
{ {0,0},{5,1} },
@@ -86,7 +86,19 @@ void World::next_level()
{ {0,0}},
{ {0,0}},
{ {0,0}},
- { {0,0}}
+ { {0,0}},
+ { {1,0},{5,1} },
+ { {2,0},{5,1},{7,1} },
+ { {3,0},{6,1} },
+ {},
+ {},
+ {},
+ {},
+ { {0,1} },
+ { {0,1} },
+ { {0,1} },
+ { {0,0},{5,1} },
+ { {0,0},{5,1} },
};
}