public Pion(Organisation org, String nom, ZonePion zone) : base(org, nom) { comportementManger = null; avancer = new Avancer(); this.position = zone; statusCourant = new PionNonDouble(); }
public void ChangeState(typeEtat etat) { switch (etat) { case typeEtat.doublette: statusCourant = new PionDouble(); break; case typeEtat.normal: statusCourant = new PionNonDouble(); break; } }
public Pion(Organisation org, String nom) : base(org, nom) { statusCourant = new PionNonDouble(); }
public Pion(Organisation org, String nom) : base(org, nom) { comportementManger = null; statusCourant = new PionNonDouble(); }