Example #1
0
 protected ObjetAbstrait(string nom, EGame nomdujeu, TextureDecorator texture)
 {
     TypeSimulation = nomdujeu;
     Nom            = nom;
     Texture        = texture;
 }
Example #2
0
 protected ObjetAbstrait(string nom, TextureDecorator texture)
 {
     Nom     = nom;
     Texture = texture;
 }