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