import java.util.*; public class ChaseDriver { public static void main (String [] args) { Scanner in = new Scanner(System.in); int pRow; int pColumn; Chase aChase = new Chase(); aChase.display(); System.out.print("Enter player row: "); pRow = in.nextInt(); System.out.print("Enter player column: "); pColumn = in.nextInt(); in.nextLine(); aChase.placePlayer(pRow,pColumn); System.out.println("Before chase"); aChase.display(); // Part II: Determine the monster's destination coordinates so it 'chases' the // player aChase.determineDestination(pRow,pColumn); // Part I: Once destination (row,column) known move the monster from location to // another. aChase.move(); System.out.println("To see chase: Hit enter to continue"); in.nextLine(); aChase.display(); } }