#include #include #include "gameBoard.h" using namespace std; int main() { gameBoard board; while(true) { //Print the board to the screen board.printBoard(); //Ask user where they want to move the PacPerson string movement; //u,d,l,r cin >> movement; //Move the pacPerson to requested location board.move(movement); } return 0; }