Exemplo n.º 1
0
 public Pokemon(PokemonComposite p)
 {
     ID               = p.Id;
     Nom              = p.Nom;
     Type             = (ETypeElement)p.Type;
     Caracteristiques = new Caracteristique(p.Caracteristique);
 }
Exemplo n.º 2
0
 public Pokemon(int id) : base(id)
 {
     Caracteristiques = new Caracteristique();
 }
Exemplo n.º 3
0
 public Pokemon()
 {
     Caracteristiques = new Caracteristique();
 }