15 lines
370 B
Java
15 lines
370 B
Java
package com.company.creature.stavovce.stavovcediely.birds;
|
|
|
|
public class Eagle extends Bird{
|
|
public Eagle(int pocet_stavcov) {
|
|
super(pocet_stavcov);
|
|
}
|
|
|
|
public Eagle(String name, double height, double weight, String type, int pocet_stavcov) {
|
|
super(name, height, weight, type, pocet_stavcov);
|
|
}
|
|
|
|
public Eagle() {
|
|
}
|
|
}
|