Advertisement
MisterEpic

Game.h

Apr 6th, 2012
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #ifndef GAME_H
  2. #define GAME_H
  3.  
  4. #include "Player.h"
  5. #include "Ball.h"
  6.  
  7. #include <SFML/Graphics.hpp>
  8. #include <SFML/Audio.hpp>
  9.  
  10. class Game
  11. {
  12.     private:
  13.         sf::RenderWindow App;
  14.         sf::Sprite background;
  15.         sf::Sound scoreSound;
  16.         Player * player1;
  17.         Player * player2;
  18.         Ball * ball;
  19.     public:
  20.         Game();
  21.         ~Game(){};
  22.         void run();
  23. };
  24.  
  25. #endif // GAME_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement