DrawScreen() public method

public DrawScreen ( SpriteBatch spriteBatch ) : void
spriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
Ejemplo n.º 1
0
 public override void Draw(GameTime gameTime)
 {
     spriteBatch.Begin();
     gfx.DrawScreen(spriteBatch);
     gfx.DrawCursor(spriteBatch, cursorPos);
     spriteBatch.End();
 }