MyGame.BulletsManager.Update C# (CSharp) Method

Update() public method

Allows the component to run logic.
public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime The gametime.
return void
        public override void Update(GameTime gameTime)
        {
            if (myGame.paused)
                return;
            FireShots();
            UpdateShots(gameTime);
            base.Update(gameTime);
        }