diff options
author | Pacien TRAN-GIRARD | 2015-11-24 11:11:17 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-11-24 11:11:17 +0100 |
commit | bc477506342411e9156b3230d847cb92bcb8e5f9 (patch) | |
tree | d952a5d14dccef38bfba3f8e27bfe10ea65d446a /src/ch/epfl/maze/physical/pacman | |
parent | 903553fe9e03e4af75eb7f8547e08b480bc58ec4 (diff) | |
download | maze-solver-bc477506342411e9156b3230d847cb92bcb8e5f9.tar.gz |
Reformat code
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman')
-rw-r--r-- | src/ch/epfl/maze/physical/pacman/Pinky.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ch/epfl/maze/physical/pacman/Pinky.java b/src/ch/epfl/maze/physical/pacman/Pinky.java index ebabc15..9c3d2c8 100644 --- a/src/ch/epfl/maze/physical/pacman/Pinky.java +++ b/src/ch/epfl/maze/physical/pacman/Pinky.java | |||
@@ -6,8 +6,6 @@ import ch.epfl.maze.physical.GhostPredator; | |||
6 | import ch.epfl.maze.util.Direction; | 6 | import ch.epfl.maze.util.Direction; |
7 | import ch.epfl.maze.util.Vector2D; | 7 | import ch.epfl.maze.util.Vector2D; |
8 | 8 | ||
9 | import java.util.Vector; | ||
10 | |||
11 | /** | 9 | /** |
12 | * 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. |
13 | * | 11 | * |
@@ -16,6 +14,7 @@ import java.util.Vector; | |||
16 | public class Pinky extends GhostPredator { | 14 | public class Pinky extends GhostPredator { |
17 | 15 | ||
18 | private static final int TARGET_OFFSET = 4; | 16 | private static final int TARGET_OFFSET = 4; |
17 | |||
19 | /** | 18 | /** |
20 | * Constructs a Pinky with a starting position. | 19 | * Constructs a Pinky with a starting position. |
21 | * | 20 | * |