MyGame.BulletsManager.Update C# (CSharp) 메소드

Update() 공개 메소드

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