package giantglove;
public class DataFrame{
    int f, x, y, w, h;
    float t;

    DataFrame(int frame, int xpos, int ypos, int wth, int hgt, float time){
       f = frame;
       x = xpos;
       y = ypos;
       w = wth;
       h = hgt;
       t = time;
    }

    void print(){
        System.out.println("f=" + f + ", x=" + x + ", y=" + y + ", w=" + w + ", h=" + h + ", t=" + t);
    }

}
