// Interface.java // Description: Interface for student code // Author: Chris Wilcox // Date: 4/28/2015 package myPackage; public interface Interface { public enum eMove { NO_MOVE, LEFT, UP_LEFT, UP, UP_RIGHT, RIGHT, DOWN_RIGHT, DOWN, DOWN_LEFT } // Query move public eMove move(); // Get current row of squirrel public int getCurrentRow(); // Get current column of squirrel public int getCurrentCol(); // Get row of closest terrier public int getClosestRow(); // Get column of closest terrier public int getClosestCol(); // Get distance of closest terrier public double getClosestDist(); }