summaryrefslogtreecommitdiff
path: root/World.h
diff options
context:
space:
mode:
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);
};