Suppression des constructeurs dans Ball & Block
This commit is contained in:
parent
d2ef0accc4
commit
f9f764ed51
4
ball.cpp
4
ball.cpp
|
@ -1,9 +1,5 @@
|
||||||
#include "ball.hpp"
|
#include "ball.hpp"
|
||||||
|
|
||||||
Ball::Ball() {
|
|
||||||
// TODO: implémenter cette fonction
|
|
||||||
}
|
|
||||||
|
|
||||||
void Ball::draw(sf::RenderWindow& window) {
|
void Ball::draw(sf::RenderWindow& window) {
|
||||||
// TODO: implémenter cette fonction
|
// TODO: implémenter cette fonction
|
||||||
}
|
}
|
||||||
|
|
2
ball.hpp
2
ball.hpp
|
@ -17,8 +17,6 @@ protected:
|
||||||
static constexpr float MOVE = 10;
|
static constexpr float MOVE = 10;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Ball();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dessine la balle dans la fenêtre donnée
|
* Dessine la balle dans la fenêtre donnée
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
#include "block.hpp"
|
#include "block.hpp"
|
||||||
|
|
||||||
Block::Block() {
|
|
||||||
// TODO: implémenter cette fonction
|
|
||||||
}
|
|
||||||
|
|
||||||
void Block::draw(sf::RenderWindow& window) {
|
void Block::draw(sf::RenderWindow& window) {
|
||||||
// TODO: implémenter cette fonction
|
// TODO: implémenter cette fonction
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue