// Note: comments about which requirements are met will be on top of the line of code that meets the requirement
// This is a new interface created in the Spring Semester, so #1-18 will not be included in the comments for this interface.
public interface Position {
// abstract methods to be implemented in GameCharacter
public double getPosition();
public void setPosition();
public String getDirection();
} // end class