22 Dog(
const char* _name);
45 void run(
int minutes);
56 void sleep(
int minutes);
bool checkEnergy(int energyToExpend)
Checks the dog's energy.
void bark(void)
Causes the dog to bark.
void run(int minutes)
Causes the dog to run.
int energy
The dog's available energy.
void sleep(int minutes)
Causes the dog to sleep.
const char * name
The dog's name.