예제 #1
0
        public void Draw(GameTime gameTime, SpriteBatch spriteBatch)
        {
            spriteBatch.Draw(backgroundTex, background, Color.White);

            player.Draw(gameTime, spriteBatch);
            enemyHandler.Draw(gameTime, spriteBatch);
            bulletHandler.Draw(gameTime, spriteBatch);

            spriteBatch.Draw(groundTex, ground, Color.White);
        }