Commit e2c23cab authored by a-j.towse's avatar a-j.towse

deleted dog test, added fish

parent 96484550
public class Fish extends Animal{
Double waterTemp;
String waterType;
public Fish() {
super();
}
public Fish(String name, String description, String environment, String foodType, Double waterTemp, String waterType) {
super(name, description, environment, foodType);
this.waterTemp = waterTemp;
this.waterType = waterType;
}
}
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