Commit ff478c1b authored by tahsif.ahmed's avatar tahsif.ahmed

Upload New File

parent b47c2521
public class aquatic extends animal {
boolean requireWater = true;
String waterType;
aquatic(String name, String species, String biome, double weight, double height, String foodType, boolean requireWater, String waterType) {
super(name, species, biome, weight, height, foodType);
this.requireWater = requireWater;
this.waterType = waterType;
//TODO Auto-generated constructor stub
}
}
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