From 0d1b6de5ad0549f72a1df725e843fd9375c88cd5 Mon Sep 17 00:00:00 2001 From: keizaal Date: Wed, 26 May 2021 23:28:33 +0200 Subject: [PATCH] Declaration of all HitBox Class --- .classpath | 7 +++++++ .gitignore | 1 + GamePlay/Active_HitBox.java | 4 ++++ GamePlay/Active_throw_Hitbox.java | 4 ++++ GamePlay/HitBox.java | 8 ++++++++ GamePlay/Passive_HitBox.java | 4 ++++ GamePlay/Passive_throw_HitBox.java | 4 ++++ GamePlay/Push_HitBox.java | 4 ++++ 8 files changed, 36 insertions(+) create mode 100644 .classpath create mode 100644 .gitignore create mode 100644 GamePlay/Active_HitBox.java create mode 100644 GamePlay/Active_throw_Hitbox.java create mode 100644 GamePlay/HitBox.java create mode 100644 GamePlay/Passive_HitBox.java create mode 100644 GamePlay/Passive_throw_HitBox.java create mode 100644 GamePlay/Push_HitBox.java 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 { + +}