ProjectileController.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    void Update()
    {
        // *** Add your source code here ***
    }

Usage Example

Example #1
0
        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