Started implementation of Frame
This commit is contained in:
parent
e1d1803cd2
commit
f0aa2592fd
@ -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
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user