public void GeneratingBullets(object sender, BulletCoordsEventArgs args)
 {
     bullets.Add(bulletFactory.CreateBullet(args.BulletType, args.Position));
 }
Ejemplo n.º 2
0
 protected virtual void OnGenBullets(BulletCoordsEventArgs args)
 {
     GenBullets?.Invoke(this, args);
 }