"depot M315"

This commit is contained in:
JunkJumper
2020-05-01 22:28:41 +02:00
parent 91f5bce946
commit 16368c9c8b
125 changed files with 4506 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package td5.p1.arme;
public class Epée extends Arme {
public Epée() {
this("Epée");
}
public Epée(String n) {
super(25, 5, n);
}
}