Upload New File

This commit is contained in:
Chiara Relevat 2019-03-20 14:14:23 +01:00
parent 99b0c26673
commit 0ea02493ff

View File

@ -0,0 +1,11 @@
package piecesEchiquier;
public class Pion extends Piece {
public Pion(String c, String emp,char l) {
super(c,emp,l);
}
}