Commit 2e06df45 authored by a-j.towse's avatar a-j.towse

WIP SuperSuper falcon

parent 59016b60
public class Falcon extends Bird{
public Falcon() {
super();
}
public Falcon(String name, String description, String environment, String foodType, Boolean predatory, Boolean flight) {
super(name, description, environment, foodType);
addDetail("Predatory: "+predatory);
addDetail("Flight: "+flight);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment