blob: 0ad62ffa09ae2ef8321d7e43f18865e25b9c9475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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);
}
}
|