blob: b52ef463f08f4fe028d9c6b6658b019ef359e95f [file] [log] [blame]
#ifndef PredatorDef
#define PredatorDef
class Predator : public Prey {
private:
virtual Cell *reproduce(Coordinate anOffset);
protected:
unsigned timeToFeed;
public:
Predator(Coordinate aCoord) : Prey(aCoord) {
timeToFeed = TimeToFeed;
image = DefaultPredImage;
}
virtual void process(void);
};
#endif