15 lines
365 B
Java
15 lines
365 B
Java
package com.company.creature.stavovce.stavovcediely.fish;
|
|
|
|
public class Nemo extends Fish{
|
|
public Nemo(int pocet_stavcov) {
|
|
super(pocet_stavcov);
|
|
}
|
|
|
|
public Nemo(String name, double height, double weight, String type, int pocet_stavcov) {
|
|
super(name, height, weight, type, pocet_stavcov);
|
|
}
|
|
|
|
public Nemo() {
|
|
}
|
|
}
|