Draw() public method

public Draw ( SpriteBatch sb ) : void
sb Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
Beispiel #1
0
 public void Draw(SpriteBatch sb)
 {
     title.Draw(sb);
     foreach (TextButton b in buttons)
     {
         b.Draw(sb);
     }
 }