Started implementation of Frame

This commit is contained in:
keizaal 2021-05-27 15:49:07 +02:00
parent e1d1803cd2
commit f0aa2592fd

View File

@ -1,4 +1,7 @@
package Frames;
import java.util.ArrayList;
import Hitboxes.*;
/**
* Main class for frames
* @author Victor Azra
@ -6,9 +9,14 @@ package Frames;
*/
public class Frame {
//TODO: to implement
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;
public Frame() {
//TODO : to implement
}
}