//Move.h #include #include #include #include #include "occupantType.h" #include "coords.h" class Move { private: occupantType theMover; public: coords hex; public: Move(); Move(int a, int b); Move(coords &there); Move(occupantType it, coords & there); bool operator == (const Move & there); coords getCoords(); occupantType getMover(); void display(); };