Initial commit

This commit is contained in:
Andrew
2022-11-25 11:49:17 +02:00
commit a7e6362658
22 changed files with 470 additions and 0 deletions

8
Main/White.java Normal file
View File

@@ -0,0 +1,8 @@
package Main;
public class White extends Lutemon {
public White(String name, String color, int exp, int attack, int defense, int health) {
super(name, color, exp, attack, defense, health);
}
}