skizzle/ball.cpp

14 lines
265 B
C++
Raw Normal View History

2016-03-04 15:29:31 +00:00
#include "ball.hpp"
Ball::Ball() {
// TODO: implémenter cette fonction
2016-03-04 15:29:31 +00:00
}
void Ball::update(sf::Vector2f forces, float delta) {
// TODO: implémenter cette fonction
2016-03-04 15:29:31 +00:00
}
void Ball::draw(sf::RenderWindow& window) {
// TODO: implémenter cette fonction
2016-03-04 15:29:31 +00:00
}