import java.awt.*;
import java.awt.image.*;

class Track {
	int[] frameSequence;  // The sequence in which the frames
	                      // should be displayed
	int[] dx;  // The distance an AnimatedSprite should be 
	int[] dy;  //   moved in the x and y directions BEFORE
	           //   displaying the current frame
                        	
    public Track(int[] seq, int[] xlist, int[] ylist) {
        frameSequence = seq;
        dx = xlist;
        dy = ylist;
    }
}

