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

7
.classpath Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="GamePlay"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/bin/

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 {
}