Skip to content

Commit

Permalink
Fixed merge conflicts for PR #16
Browse files Browse the repository at this point in the history
  • Loading branch information
LBF38 committed Jan 4, 2023
2 parents 776db93 + 8de4b56 commit 21362d4
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class AlienBulletCollision extends CollisionHandler {
/**
* Constructeur de la classe AlienBulletCollision
* Elle hérite de la classe CollisionHandler de FXGL
*
*/
public AlienBulletCollision() {
super(EntityType.BULLET, EntityType.ALIEN);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class AlienPlayerCollision extends CollisionHandler {
/**
* Constructeur de la classe AlienPlayerCollision
* Création d'une collision entre les entités player et alien
*
*/
public AlienPlayerCollision() {
super(EntityType.PLAYER, EntityType.ALIEN);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
public class BulletBulletCollision extends CollisionHandler {
/**
* Constructeur de la classe BulletBulletCollision
*
*/
public BulletBulletCollision() {
super(EntityType.BULLET, EntityType.BULLET);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
public class BulletPlayerCollision extends CollisionHandler {
/**
* Constructeur de la classe BulletPlayerCollision
*
*/
public BulletPlayerCollision() {
super(EntityType.BULLET, EntityType.PLAYER);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
public class EnemyShootBulletCollision extends CollisionHandler {
/**
* Constructeur de la classe EnemyShootBulletCollision
*
*/
public EnemyShootBulletCollision() {
super(EntityType.BULLET, EntityType.ENEMY_SHOOT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
public class EnemyShootPlayerCollision extends CollisionHandler {
/**
* Constructeur de la classe EnemyShootPlayerCollision
*
*/
public EnemyShootPlayerCollision() {
super(EntityType.ENEMY_SHOOT, EntityType.PLAYER);
Expand Down

0 comments on commit 21362d4

Please sign in to comment.