From b60abdc5773c1a93ebf492bf4670401a0b8680b5 Mon Sep 17 00:00:00 2001 From: Jan Philipp Timme Date: Thu, 6 Nov 2014 19:44:27 +0100 Subject: [PATCH] Remove unused method from Shot class. --- src/de/teamteamteam/spacescooter/entity/shot/Shot.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/de/teamteamteam/spacescooter/entity/shot/Shot.java b/src/de/teamteamteam/spacescooter/entity/shot/Shot.java index d8a2342..f614301 100644 --- a/src/de/teamteamteam/spacescooter/entity/shot/Shot.java +++ b/src/de/teamteamteam/spacescooter/entity/shot/Shot.java @@ -23,12 +23,7 @@ public class Shot extends LivingEntity { this.setImage(filename); this.setPosition(this.x - this.getImage().getWidth() / 2, this.y - this.getImage().getHeight() / 2); } - - //public void setImage(String filename) { - //super.setImage(filename); - //this.setposition(this.x - this.getimage().getwidth() / 2, this.y - this.getimage().getheight() / 2); - //} - + public int getDamageValue() { return this.damageValue; }