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

Draw() 공개 메소드

This method renders the current state.
public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime The elapsed game time.
리턴 void
        public override void Draw(GameTime gameTime)
        {
            foreach (Bullet bullet in bullets)
                bullet.Draw(gameTime);
            base.Draw(gameTime);
        }