Example #1
0
        public void Draw(SpriteBatch _spritebatch)
        {
            menuButton.Draw(_spritebatch);                                                                               //Draw Menu

            _spritebatch.DrawString(fonts[FontStyle.Heading1], "Customize Controls", new Vector2(100, 50), Color.Black); //Draw Title

            //Draw butttons
            Left.Draw(_spritebatch);
            Right.Draw(_spritebatch);
            Shoot.Draw(_spritebatch);
        }