80 Zeichen pls

This commit is contained in:
lubiana 2014-11-06 18:41:03 +01:00
parent 1525c358c1
commit 6f2857946d
1 changed files with 7 additions and 1 deletions

View File

@ -26,7 +26,13 @@ public abstract class Enemy extends ShootingEntity {
@Override @Override
public void createShot() { public void createShot() {
new SingleRedShot(super.getX() + super.getShootSpawnX(), super.getY() + super.getShootSpawnY(), super.getShootDirection(), super.getShootSpeed(), super.getDamageValue()); new SingleRedShot(
super.getX() + super.getShootSpawnX(),
super.getY() + super.getShootSpawnY(),
super.getShootDirection(),
super.getShootSpeed(),
super.getDamageValue()
);
} }
} }