package gUI;
/**
 * Chapter 7: Mover.java
 * Interface for objects that can move to a specified location.
 * Must be implemented by objects that respond to a MoveTimer.
 */

//Not modified since obtainment from Pong lab by Alexander James Ehwalt Ryan, Student Number 301071161, 
//of IAT 265 D-105.

public interface Mover {
    public void move();
}
