#ifndef PONG_HPP
#define PONG_HPP
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include "Ball.hpp"
class Pong
{
public:
Pong();
void run();
private:
sf::RenderWindow window;
sf::Clock clock;
sf::Time time;
sf::Texture texture_back;
sf::Sprite background;
sf::Music music;
Ball ball;
}; // class Pong
#endif // PONG_HPP