35 lines
618 B
Java
35 lines
618 B
Java
package fr.blankoworld.plateau;
|
|
|
|
/**
|
|
*
|
|
* @author olivier DOSSMANN
|
|
*
|
|
*/
|
|
public class Joueurs {
|
|
private String nomJoueur;
|
|
private Jeton jetonJoueur;
|
|
|
|
public int s_nombreJoueurs;
|
|
|
|
public Joueurs(String nom, String couleur){
|
|
nomJoueur = nom;
|
|
jetonJoueur = new Jeton(couleur);
|
|
}
|
|
|
|
public String toString(){
|
|
return "Joueur : " + nomJoueur + "\nCouleur : " + this.jetonJoueur.getCouleur();
|
|
}
|
|
|
|
public String getNom(){
|
|
return this.nomJoueur;
|
|
}
|
|
|
|
public void setNom(String nom){
|
|
this.nomJoueur = nom;
|
|
}
|
|
|
|
public Jeton donneJeton(){
|
|
return this.jetonJoueur;
|
|
}
|
|
}
|