merge
This commit is contained in:
@ -1,15 +1,16 @@
|
||||
package main;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.HashMap;
|
||||
import ihm.Couple;
|
||||
|
||||
public class Configuration {
|
||||
private int nombreJoueurs;
|
||||
private int nombreJoueursHumains;
|
||||
private List<String> nomsJoueurs;
|
||||
private HashMap<Integer, Couple> nomsJoueurs;
|
||||
|
||||
//TODO : attribut pour prendre en compte si jeu est normal ou demarrage rapide?
|
||||
|
||||
public Configuration (List<String> nomsJoueurs,int nj, int njh) {
|
||||
public Configuration (HashMap<Integer, Couple> nomsJoueurs,int nj, int njh) {
|
||||
this.nomsJoueurs = nomsJoueurs;
|
||||
nombreJoueurs = nj;
|
||||
nombreJoueursHumains = njh;
|
||||
|
Reference in New Issue
Block a user