diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..90f172f --- /dev/null +++ b/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/GamePlay/Active_HitBox.java b/GamePlay/Active_HitBox.java new file mode 100644 index 0000000..0ae21f7 --- /dev/null +++ b/GamePlay/Active_HitBox.java @@ -0,0 +1,4 @@ + +public class Active_HitBox extends HitBox { + +} diff --git a/GamePlay/Active_throw_Hitbox.java b/GamePlay/Active_throw_Hitbox.java new file mode 100644 index 0000000..55c4dc2 --- /dev/null +++ b/GamePlay/Active_throw_Hitbox.java @@ -0,0 +1,4 @@ + +public class Active_throw_Hitbox extends HitBox { + +} diff --git a/GamePlay/HitBox.java b/GamePlay/HitBox.java new file mode 100644 index 0000000..9477c25 --- /dev/null +++ b/GamePlay/HitBox.java @@ -0,0 +1,8 @@ + +public class HitBox { + + public Double position_x; + public Double position_y; + public Double size_x; + public Double size_y; +} diff --git a/GamePlay/Passive_HitBox.java b/GamePlay/Passive_HitBox.java new file mode 100644 index 0000000..c9dcf07 --- /dev/null +++ b/GamePlay/Passive_HitBox.java @@ -0,0 +1,4 @@ + +public class Passive_HitBox extends HitBox { + +} diff --git a/GamePlay/Passive_throw_HitBox.java b/GamePlay/Passive_throw_HitBox.java new file mode 100644 index 0000000..4da4ad0 --- /dev/null +++ b/GamePlay/Passive_throw_HitBox.java @@ -0,0 +1,4 @@ + +public class Passive_throw_HitBox extends HitBox { + +} diff --git a/GamePlay/Push_HitBox.java b/GamePlay/Push_HitBox.java new file mode 100644 index 0000000..ac7de7f --- /dev/null +++ b/GamePlay/Push_HitBox.java @@ -0,0 +1,4 @@ + +public class Push_HitBox extends HitBox { + +}