Ejemplo n.º 1
0
 public Bullet(ICanShootAProjectile firedBy, double direction)
     : base(firedBy, direction)
 {
 }
Ejemplo n.º 2
0
 protected Projectile(ICanShootAProjectile firedBy, double direction)
 {
     _firedBy = firedBy;
     _direction = direction;
 }