diff options
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman')
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Blinky.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Clyde.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Inky.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/PacMan.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Pinky.java | 1 |
5 files changed, 5 insertions, 0 deletions
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; | |||
8 | /** | 8 | /** |
9 | * Red ghost from the Pac-Man game, chases directly its target. | 9 | * Red ghost from the Pac-Man game, chases directly its target. |
10 | * | 10 | * |
11 | * @author EPFL | ||
11 | * @author Pacien TRAN-GIRARD | 12 | * @author Pacien TRAN-GIRARD |
12 | */ | 13 | */ |
13 | public class Blinky extends GhostPredator { | 14 | 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; | |||
9 | * Orange ghost from the Pac-Man game, alternates between direct chase if far | 9 | * Orange ghost from the Pac-Man game, alternates between direct chase if far |
10 | * from its target and SCATTER if close. | 10 | * from its target and SCATTER if close. |
11 | * | 11 | * |
12 | * @author EPFL | ||
12 | * @author Pacien TRAN-GIRARD | 13 | * @author Pacien TRAN-GIRARD |
13 | */ | 14 | */ |
14 | public class Clyde extends GhostPredator { | 15 | 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; | |||
11 | * Blue ghost from the Pac-Man game, targets the result of two times the vector | 11 | * Blue ghost from the Pac-Man game, targets the result of two times the vector |
12 | * from Blinky to its target. | 12 | * from Blinky to its target. |
13 | * | 13 | * |
14 | * @author EPFL | ||
14 | * @author Pacien TRAN-GIRARD | 15 | * @author Pacien TRAN-GIRARD |
15 | */ | 16 | */ |
16 | public class Inky extends GhostPredator { | 17 | 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; | |||
9 | /** | 9 | /** |
10 | * Pac-Man character, from the famous game of the same name. | 10 | * Pac-Man character, from the famous game of the same name. |
11 | * | 11 | * |
12 | * @author EPFL | ||
12 | * @author Pacien TRAN-GIRARD | 13 | * @author Pacien TRAN-GIRARD |
13 | */ | 14 | */ |
14 | public class PacMan extends Prey { | 15 | 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; | |||
9 | /** | 9 | /** |
10 | * Pink ghost from the Pac-Man game, targets 4 squares in front of its target. | 10 | * Pink ghost from the Pac-Man game, targets 4 squares in front of its target. |
11 | * | 11 | * |
12 | * @author EPFL | ||
12 | * @author Pacien TRAN-GIRARD | 13 | * @author Pacien TRAN-GIRARD |
13 | */ | 14 | */ |
14 | public class Pinky extends GhostPredator { | 15 | public class Pinky extends GhostPredator { |