Exemplo n.º 1
0
 public Automobile(Automobile other)
     : base(other)
 {
     Damage = new DamageManager(other.Damage);
 }
Exemplo n.º 2
0
 public Automobile(short model, int handle)
     : base(VehicleType.Car, model, handle)
 {
     Damage = new DamageManager();
 }