ProjectileController.Update C# (CSharp) Méthode

Update() public méthode

public Update ( ) : void
Résultat void
    void Update()
    {
        // *** Add your source code here ***
    }

Usage Example

        public void Update()
        {
            EnemyController.Update();
            TowerController.Update();
            ProjectileController.Update();
            this.SetStatistics();

            if (PlayerInterfaceController.PlayerLife <= 0)
            {
                Timers.StopTimers();
                this.backgroundMusic.Stop();
                AnimationController.Renderer.RenderGameOver();
            }
        }
All Usage Examples Of ProjectileController::Update
ProjectileController