Exemplo n.º 1
0
 public Joueur(FabriquePeuple fab, String color, String nom)
 {
     Peuple = fab.creerPeuple();
     Points = 0;
     Couleur = color;
     Nom = nom;
 }
Exemplo n.º 2
0
 public JoueurCOM(FabriquePeuple fab, String color, String nom)
     : base(fab, color, nom)
 {
     unitesSelect = new List<Unite>();
 }
Exemplo n.º 3
0
 public JoueurConcret(FabriquePeuple fab, String color, String nom)
     : base(fab, color, nom)
 {
     sem = new Semaphore(0, 1);
 }