Exemplo n.º 1
0
        public void Draw(SpriteBatch spriteBatch)
        {
            title.Draw(spriteBatch);

            foreach (IButton button in buttons)
            {
                button.Draw(spriteBatch);
            }
        }
Exemplo n.º 2
0
        public void Draw(SpriteBatch spriteBatch)
        {
            title.Draw(spriteBatch);
            setColor.Draw(spriteBatch);

            foreach (IButton button in buttons)
            {
                button.Draw(spriteBatch);
            }

            textBox.Draw(spriteBatch);
        }
Exemplo n.º 3
0
 public void Draw(SpriteBatch spriteBatch)
 {
     title.Draw(spriteBatch);
     spriteBatch.DrawString(font, "...", Location + (Velocity * Radius), Color.Black);
 }
 public void Draw(SpriteBatch spriteBatch)
 {
     title.Draw(spriteBatch);
     spriteBatch.DrawString(font, "...", Location, Color.Black, 0.0f, Vector2.Zero, 1.0f, SpriteEffects.None, Scene.DisplayLayer.Animation);
 }
Exemplo n.º 5
0
 public void Draw(SpriteBatch spriteBatch)
 {
     title.Draw(spriteBatch);
     spriteBatch.DrawString(font, "...", Location, Color.Black);
 }