#ifndef __EDIBLE_H__ #define __EDIBLE_H__ #include "abstract_agent.h" namespace cs427_527 { class Edible : public virtual AbstractAgent { public: Edible(const World& w); ~Edible() {} bool isAlive() const; protected: bool eaten; }; } #endif