//testSquare.h #include #include #include #include "Move.h" class testSquare { public: occupantType contains; bool connected; private: bool tested; public: testSquare(); testSquare(occupantType typeOf, bool toTop, bool isTested); testSquare(int typeOf, bool toTop, bool isTested); bool wasTested(); void untest(); void markTested(); void put(occupantType c); };