Draw() 공개 메소드

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