Ejemplo n.º 1
0
 /// <summary>
 /// Bullet constructor
 /// </summary>
 public Bullet(Gun theGun)
     : base()
 {
     gun = theGun;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructs a new Enemy.
 /// </summary>
 public EnemyBullet(Gun theGun) : base(theGun)
 {
 }