Beispiel #1
0
 public void Draw(GameTime gameTime, SpriteBatch spriteBatch)
 {
     spriteBatch.Begin();
     _background.Draw(spriteBatch);
     _title.Draw(spriteBatch);
     spriteBatch.DrawString(_font, "PRESS SPACE", new Vector2(320, 250), Color.White);
     spriteBatch.End();
 }