#include "Animal.h" Animal::Animal() { dead = false; } bool Animal::isDead() { return dead; } void Animal::putToDeath() { dead = true; }