Danmaku_no_Kyojin.BulletEngine.MoverManager.Draw C# (CSharp) Method

Draw() public method

public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
return void
        public void Draw(GameTime gameTime)
        {
            foreach (var mover in movers)
                mover.Draw(gameTime);
        }