oop22/MyFirstUniverseFinal/src/com/company/creature/stavovce/stavovcediely/birds/Eagle.java
Oleksandr Hryshchenko 29bc9ee411 Final
2022-12-14 01:20:10 +01:00

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() {
}
}