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