24 lines
461 B
Java
24 lines
461 B
Java
package Frames;
|
|
|
|
import java.util.ArrayList;
|
|
import Hitboxes.*;
|
|
/**
|
|
* Main class for frames
|
|
* @author Victor Azra
|
|
*
|
|
*/
|
|
public class Frame {
|
|
|
|
private Double move_y;
|
|
private Double move_x;
|
|
private ArrayList<Passive_HitBox> passHitBox;
|
|
private ArrayList<Active_HitBox> actHitBox;
|
|
private ArrayList<Passive_throw_HitBox> passThrowHitBox;
|
|
private ArrayList<Active_throw_Hitbox> actThrowHitBox;
|
|
private Push_HitBox pushHitBox;
|
|
|
|
public Frame() {
|
|
|
|
}
|
|
}
|