1 #ifndef _FOOD_
2 #define _FOOD_
3 
4 #include "Ghost1.h"
5 
6 using namespace std;
7 
8 class Food : public Ghost1{
9 	public:
10 		Food(char *filename, int x, int y, int speed, AnimationFactory* af);
11 		bool alive;
12 		virtual ~Food();
13 };
14 
15 #endif
16