BlisterUI.LogoScreen.Draw C# (CSharp) 메소드

Draw() 공개 메소드

public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
리턴 void
        public override void Draw(GameTime gameTime)
        {
            game.GraphicsDevice.Clear(Color.Black);
            game.SpriteBatch.Begin();
            logoList.draw(game.SpriteBatch);
            game.SpriteBatch.End();
        }