From fb492341a1d05590c5230e8e0bd5e48f530944fe Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Tue, 24 Nov 2015 11:15:53 +0100 Subject: Properly set class authors --- src/ch/epfl/maze/physical/pacman/Blinky.java | 1 + src/ch/epfl/maze/physical/pacman/Clyde.java | 1 + src/ch/epfl/maze/physical/pacman/Inky.java | 1 + src/ch/epfl/maze/physical/pacman/PacMan.java | 1 + src/ch/epfl/maze/physical/pacman/Pinky.java | 1 + 5 files changed, 5 insertions(+) (limited to 'src/ch/epfl/maze/physical/pacman') diff --git a/src/ch/epfl/maze/physical/pacman/Blinky.java b/src/ch/epfl/maze/physical/pacman/Blinky.java index b3ac64e..4e8c4a0 100644 --- a/src/ch/epfl/maze/physical/pacman/Blinky.java +++ b/src/ch/epfl/maze/physical/pacman/Blinky.java @@ -8,6 +8,7 @@ import ch.epfl.maze.util.Vector2D; /** * Red ghost from the Pac-Man game, chases directly its target. * + * @author EPFL * @author Pacien TRAN-GIRARD */ public class Blinky extends GhostPredator { diff --git a/src/ch/epfl/maze/physical/pacman/Clyde.java b/src/ch/epfl/maze/physical/pacman/Clyde.java index 7e8bdd7..40089db 100644 --- a/src/ch/epfl/maze/physical/pacman/Clyde.java +++ b/src/ch/epfl/maze/physical/pacman/Clyde.java @@ -9,6 +9,7 @@ import ch.epfl.maze.util.Vector2D; * Orange ghost from the Pac-Man game, alternates between direct chase if far * from its target and SCATTER if close. * + * @author EPFL * @author Pacien TRAN-GIRARD */ public class Clyde extends GhostPredator { diff --git a/src/ch/epfl/maze/physical/pacman/Inky.java b/src/ch/epfl/maze/physical/pacman/Inky.java index de0466d..05c712c 100644 --- a/src/ch/epfl/maze/physical/pacman/Inky.java +++ b/src/ch/epfl/maze/physical/pacman/Inky.java @@ -11,6 +11,7 @@ import java.util.NoSuchElementException; * Blue ghost from the Pac-Man game, targets the result of two times the vector * from Blinky to its target. * + * @author EPFL * @author Pacien TRAN-GIRARD */ public class Inky extends GhostPredator { diff --git a/src/ch/epfl/maze/physical/pacman/PacMan.java b/src/ch/epfl/maze/physical/pacman/PacMan.java index ee1ee28..6ec7436 100644 --- a/src/ch/epfl/maze/physical/pacman/PacMan.java +++ b/src/ch/epfl/maze/physical/pacman/PacMan.java @@ -9,6 +9,7 @@ import ch.epfl.maze.util.Vector2D; /** * Pac-Man character, from the famous game of the same name. * + * @author EPFL * @author Pacien TRAN-GIRARD */ public class PacMan extends Prey { diff --git a/src/ch/epfl/maze/physical/pacman/Pinky.java b/src/ch/epfl/maze/physical/pacman/Pinky.java index 9c3d2c8..f3e145d 100644 --- a/src/ch/epfl/maze/physical/pacman/Pinky.java +++ b/src/ch/epfl/maze/physical/pacman/Pinky.java @@ -9,6 +9,7 @@ import ch.epfl.maze.util.Vector2D; /** * Pink ghost from the Pac-Man game, targets 4 squares in front of its target. * + * @author EPFL * @author Pacien TRAN-GIRARD */ public class Pinky extends GhostPredator { -- cgit v1.2.3