#ifndef PONG_H #define PONG_H #include "PADDLE.H" #include "BALL.H" #include "GFX640.H" class Pong { private: GFX640 G; Ball PongBall; Paddle Player1; Paddle Player2; public: Pong(); void PlayPong(); void Display(); void EraseOldShapes(); }; #endif