#include using namespace std; class Jabberwocky{ public: Jabberwocky():color("red"),hunger(true),flying(false),feet(2){} Jabberwocky(string c, bool h, bool f, int fe):color(c),hunger(h),flying(f),feet(fe){} string color; bool hunger; bool flying; int feet; void feed(); };