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