24 lines
461 B
Java
Raw Normal View History

2021-05-27 00:54:28 +02:00
package Frames;
2021-05-27 15:49:07 +02:00
import java.util.ArrayList;
import Hitboxes.*;
2021-05-27 00:54:28 +02:00
/**
* Main class for frames
* @author Victor Azra
*
*/
public class Frame {
2021-05-27 15:49:07 +02:00
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;
2021-05-27 00:54:28 +02:00
public Frame() {
2021-05-27 15:49:07 +02:00
2021-05-27 00:54:28 +02:00
}
}