summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/pacman/Pinky.java
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-11-22 18:49:47 +0100
committerPacien TRAN-GIRARD2015-11-22 18:49:47 +0100
commit7009ff652c18a4e387dca4972e570bf1f56387c3 (patch)
tree36c0f5c56e298c01ce8c87daef1cfce9301015d3 /src/ch/epfl/maze/physical/pacman/Pinky.java
parentc294cfcfc8757018c8a5c816d512a3343d2aa840 (diff)
downloadmaze-solver-7009ff652c18a4e387dca4972e570bf1f56387c3.tar.gz
Implement ghosts polymorphic copy methods
Diffstat (limited to 'src/ch/epfl/maze/physical/pacman/Pinky.java')
-rw-r--r--src/ch/epfl/maze/physical/pacman/Pinky.java3
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 aaa2720..100264c 100644
--- a/src/ch/epfl/maze/physical/pacman/Pinky.java
+++ b/src/ch/epfl/maze/physical/pacman/Pinky.java
@@ -31,7 +31,6 @@ public class Pinky extends Predator {
31 31
32 @Override 32 @Override
33 public Animal copy() { 33 public Animal copy() {
34 // TODO 34 return new Pinky(this.getPosition());
35 return null;
36 } 35 }
37} 36}