blob: 9cc725621003e45a364263b7130fc8e183a0f13b (
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;
/**
* 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);
}
}
|