#ifndef EGG_H
#define EGG_H

#include "beast.h"

class egg : public beast {
	public:
		egg();

		bool move();
		bool hatched();

	private:
		int hatchtime;
};

#endif
