Exemple #1
0
        private void FireProjectile(Point target)
        {
            WeaponProjectile projectile = Magazine.Dequeue();

            Game.AddGameObject(projectile);
            if (ProjectilesLeftAnimation != null)
            {
                ProjectilesLeftAnimation.Start();
            }
        }