summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/Pinky.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Pinky.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/Pinky.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Pinky.java b/src/ch/epfl/maze/physical/pacman/Pinky.java
index 100264c..3e4209d 100644
--- a/src/ch/epfl/maze/physical/pacman/Pinky.java
+++ b/src/ch/epfl/maze/physical/pacman/Pinky.java
@@ -2,7 +2,7 @@ package ch.epfl.maze.physical.pacman;
2 2
3import ch.epfl.maze.physical.Animal; 3import ch.epfl.maze.physical.Animal;
4import ch.epfl.maze.physical.Daedalus; 4import ch.epfl.maze.physical.Daedalus;
5import ch.epfl.maze.physical.Predator; 5import ch.epfl.maze.physical.GhostPredator;
6import ch.epfl.maze.util.Direction; 6import ch.epfl.maze.util.Direction;
7import ch.epfl.maze.util.Vector2D; 7import ch.epfl.maze.util.Vector2D;
8 8
@@ -10,7 +10,7 @@ import ch.epfl.maze.util.Vector2D;
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 12
13public class Pinky extends Predator { 13public class Pinky extends GhostPredator {
14 14
15 /** 15 /**
16 * Constructs a Pinky with a starting position. 16 * Constructs a Pinky with a starting position.