File size: 478 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
package commun;
import java.io.Serializable;
import java.util.ArrayList;
public class PenduResultat implements Serializable {
private int vie;
private ArrayList<Integer> positionLettre;
public PenduResultat(int vie, ArrayList<Integer> pos) {
this.vie = vie;
this.positionLettre = pos;
}
public int getVie() {
return this.vie;
}
public ArrayList<Integer> getPositionLettre() {
return this.positionLettre;
}
}
|