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 }