This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lutemon/Main/Orange.java
2022-11-25 11:49:17 +02:00

9 lines
213 B
Java

package Main;
public class Orange extends Lutemon {
public Orange(String name, String color, int exp, int attack, int defense, int health) {
super(name, color, exp, attack, defense, health);
}
}