Ejemplo n.º 1
0
 public abstract void AvanceUnTour(ZoneAbstraite position);
Ejemplo n.º 2
0
 public abstract void AvanceAuHazard(ZoneAbstraite position);
Ejemplo n.º 3
0
 public abstract AccesAbstrait CreerAcces(ZoneAbstraite zdebut, ZoneAbstraite zfin);
Ejemplo n.º 4
0
 public ObjetAbstrait(ZoneAbstraite position, string pType)
 {
     Position = position;
     Type     = pType;
 }
Ejemplo n.º 5
0
 protected AccesAbstrait(ZoneAbstraite debut, ZoneAbstraite fin)
 {
     this.debut = debut;
     this.fin   = fin;
 }
Ejemplo n.º 6
0
 public abstract PersonnageAbstrait CreerPersonnage(string nom, ZoneAbstraite position);
 public abstract void DeplacerPersonnage(PersonnageAbstrait unPersonnage, ZoneAbstraite zoneSource, ZoneAbstraite zoneFin);