Example #1
0
 public Chevalier(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat       = new ComportementAcheval();
     ComportementEmettreUnSon = new ComportementParler();
     ComportementDeplace      = new ComportementDeplaceAcheval();
     ComportementAffichage    = new ComportementAffichageNoble();
 }
 public Chevalier(string nom, Organisation etatMajor) : base(nom, etatMajor)
 {
     ComportementCombat = new ComportementAcheval();
     ComportementEmettreUnSon = new ComportementParler();
     ComportementDeplace = new ComportementDeplaceAcheval();
     ComportementAffichage = new ComportementAffichageNoble();
 }
 public Princesse(string nom,Organisation organisation) : base(nom, organisation)
 {
     ComportementEmettreUnSon = new ComportementParlerPrincesse();
     ComportementDeplace = new ComportementDeplaceApied();
     ComportementAffichage = new ComportementAffichageNoble();
 }
 public Princesse(string nom, Organisation organisation) : base(nom, organisation)
 {
     ComportementEmettreUnSon = new ComportementParlerPrincesse();
     ComportementAffichage    = new ComportementAffichageNoble();
 }