SFML Pong, but object oriented

123456789101112
  1. #include <SFML/Graphics.hpp>
  2. #include <SFML/Audio.hpp>
  3. class Game {
  4. private:
  5. sf::Clock AITimer,
  6. Clock;
  7. bool isPlaying;
  8. public:
  9. Game();
  10. };