package project1;

class State {

int frame;
int ticks;
int dx;
int dy;

public State(int f, int t, int x, int y) {
  //This class serves as a data structure for the state information
  frame=f;
  ticks=t;
  dx=x;
  dy=y;
}
}
