diff --git a/res/images/enemy01.png b/res/images/enemy01.png new file mode 100644 index 0000000..b07c4b9 Binary files /dev/null and b/res/images/enemy01.png differ diff --git a/res/images/enemy02.png b/res/images/enemy02.png new file mode 100644 index 0000000..854fe7f Binary files /dev/null and b/res/images/enemy02.png differ diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java index d890ab9..1affc54 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java @@ -15,7 +15,7 @@ public class EnemyFour extends Enemy{ public EnemyFour(int x, int y, ArrayList points) { super(x, y); - this.setImage("images/nyancat.png"); + this.setImage("images/enemy01.png"); this.setShootSpeed(4); this.setShootDelay(42); this.setShootSpawn(-10, 10); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java index b6a0863..05c2646 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java @@ -19,7 +19,7 @@ public class EnemyThree extends Enemy{ public EnemyThree(int x, int y) { super(x, y); random = new Random(); - this.setImage("images/nyancat.png"); + this.setImage("images/enemy02.png"); this.setShootSpeed(4); this.setShootDelay(42); this.setShootSpawn(-10, 10); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java index 41a75b2..14d3d43 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java @@ -9,7 +9,7 @@ public class EnemyTwo extends Enemy{ public EnemyTwo(int x, int y) { super(x, y); Random random = new Random(); - this.setImage("images/nyancat.png"); + this.setImage("images/enemy02.png"); this.setShootSpeed(4); this.setShootDelay(42); this.setShootSpawn(-10, 10);