summaryrefslogtreecommitdiff
path: root/World.h
diff options
context:
space:
mode:
authormiguel <miguel@localhost>2017-09-13 01:47:16 +0200
committermiguel <miguel@localhost>2017-09-13 01:47:16 +0200
commit842c21d6aab2f38e35ea668194f67f85af2e3539 (patch)
tree2277e439edf7980781f56b46fbb6dc837f3b8427 /World.h
parent3e48a47b9c47721e041b5b54a55ce5cb74d27ddb (diff)
extra tiles
Diffstat (limited to 'World.h')
-rw-r--r--World.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/World.h b/World.h
index fbd5279..fba93b1 100644
--- a/World.h
+++ b/World.h
@@ -25,9 +25,9 @@ struct World
Player player;
std::vector<std::vector<Brick>> bricks=
{
- { {0,0} },
- { {0,0} },
- { {0,0} },
+ { {0,2} },
+ { {0,2} },
+ { {0,2} },
{ {0,0},{5,1} },
{ {0,0},{5,1} },
{ {0,0},{5,1} },
@@ -45,4 +45,5 @@ struct World
World(int level);
void sim(double);
+ void mouseclick(int x, int y);
};