/* * Ball.h * * This file provides you with the general structure needed for you to * create a class definition for class Ball. * */ #ifndef BALL #define BALL #include "world.h" /***************************************** * DO NOT CHANGE ANYTHING ABOVE THIS POINT ******************************************/ // Here is the start of the Ball class definition class Ball { public: private: }; // This is the end of the Ball class definition /***************************************** * DO NOT CHANGE ANYTHING BELOW THIS POINT ******************************************/ #endif