Declaration of all HitBox Class

This commit is contained in:
keizaal
2021-05-26 23:28:33 +02:00
parent 61fee3fbf5
commit 0d1b6de5ad
8 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,4 @@
public class Active_HitBox extends HitBox {
}

View File

@ -0,0 +1,4 @@
public class Active_throw_Hitbox extends HitBox {
}

8
GamePlay/HitBox.java Normal file
View File

@ -0,0 +1,8 @@
public class HitBox {
public Double position_x;
public Double position_y;
public Double size_x;
public Double size_y;
}

View File

@ -0,0 +1,4 @@
public class Passive_HitBox extends HitBox {
}

View File

@ -0,0 +1,4 @@
public class Passive_throw_HitBox extends HitBox {
}

View File

@ -0,0 +1,4 @@
public class Push_HitBox extends HitBox {
}