30 lines
734 B
Java
30 lines
734 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() {
|
|
move_y = 0.0;
|
|
move_x = 0.0;
|
|
passHitBox = new ArrayList<Passive_HitBox>();
|
|
actHitBox = new ArrayList<Active_HitBox>();
|
|
passThrowHitBox = new ArrayList<Passive_throw_HitBox>();
|
|
actThrowHitBox = new ArrayList<Active_throw_Hitbox>();
|
|
pushHitBox = new Push_HitBox();
|
|
}
|
|
}
|