Upload New File
This commit is contained in:
parent
91e7fe6667
commit
fb494ae054
31
src/joueurs/Joueur.java
Normal file
31
src/joueurs/Joueur.java
Normal file
@ -0,0 +1,31 @@
|
||||
package joueurs;
|
||||
|
||||
public class Joueur {
|
||||
private String nom;
|
||||
private String couleur;
|
||||
//private boolean tour = false;
|
||||
|
||||
public Joueur(String n, String c) {
|
||||
nom = n;
|
||||
couleur = c;
|
||||
}
|
||||
|
||||
public String getNom() {
|
||||
return nom;
|
||||
}
|
||||
|
||||
public void setNom(String nom) {
|
||||
this.nom = nom;
|
||||
}
|
||||
|
||||
public String getCouleur() {
|
||||
return couleur;
|
||||
}
|
||||
|
||||
public void setCouleur(String couleur) {
|
||||
this.couleur = couleur;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user