package ch.epfl.maze.physical; import ch.epfl.maze.util.Vector2D; /** * Predator that kills a prey when they meet with each other in the labyrinth. * * @author EPFL * @author Pacien TRAN-GIRARD */ abstract public class Predator extends Animal implements DaedalusAware { /** * Constructs a predator with a specified position. * * @param position Position of the predator in the labyrinth */ public Predator(Vector2D position) { super(position); } }