00001 #ifndef _FOOTBALL_H_ 00002 #define _FOOTBALL_H_ 00003 00004 #include "Ball.h" 00005 00006 class Football : public Ball 00007 { 00008 public: 00009 Football(); 00010 virtual ~Football(); 00011 00012 virtual void draw(); 00013 00014 virtual void calculateValue(); 00015 }; 00016 00017 #endif