C++ Project 2016-2017: Arkanoid
block.cpp
Go to the documentation of this file.
1 
3 #include "block.h"
4 #include "../../math/vector2D.h"
5 
6 #include <iostream>
7 
8 using namespace std;
9 
10 namespace arkanoid {
11 
12  Block::Block() {}
13 
14  Block::Block(double x, double y, pair<double, double> size) : Wall(x, y, size) {}
15 
17 
18  void Block::update() {}
19 
20  void Block::draw() const {}
21 
22 }
void draw() const
Definition: block.cpp:20
void update()
Definition: block.cpp:18
The Wall (left/right/top side) in the Arkanoid game that represents a single "square".
Definition: wall.h:17
All the game logic of the Arkanoid game.
Definition: ball.cpp:15