From 52e461de7bcfd2656328a7ce74006296e31943dc Mon Sep 17 00:00:00 2001 From: Leen Dereu Date: Fri, 4 May 2018 14:23:22 +0200 Subject: [PATCH] Class Projectile --- OGP1718-Worms/src/worms/model/Worm.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/OGP1718-Worms/src/worms/model/Worm.java b/OGP1718-Worms/src/worms/model/Worm.java index a92a113..44e1851 100644 --- a/OGP1718-Worms/src/worms/model/Worm.java +++ b/OGP1718-Worms/src/worms/model/Worm.java @@ -28,7 +28,7 @@ import java.util.concurrent.ThreadLocalRandom; * @invar The value of the hit points of the worm must be a valid value for hit points. * isValidValueHitPoints(getHitPoints()) * - * @version 2.0 + * @version 3.0 * @author Arthur Bols and Leen Dereu * * Arthur Bols 1e bachelor Informatica @@ -1223,4 +1223,12 @@ public class Worm extends GameObject { } } } + // region firing and projectiles + //=================================================================================== + public void fire() { + + } + + // =================================================================================== + // endregion }