public void Draw(SpriteBatch spriteBatch,SpriteFont font, int windowHeight, int windowWidth)
        {
            string displayString;

            MenuItemManager highscores = new MenuItemManager(11, font, windowHeight, windowWidth);

            highscores.setItem(0, "HIGHSCORES", MeniuItem.GlitterType.Always);

            for (int i = 1; i < Count + 1; i++)
            {
                displayString = iPoints[i - 1].ToString();
                highscores.setItem(i, displayString, MeniuItem.GlitterType.None);
            }

            highscores.Draw(spriteBatch);
        }
 private void setupOptionsMenu()
 {
     optionsMenu = new MenuItemManager(5, fontArcade, GraphicsDevice.Viewport.Height, GraphicsDevice.Viewport.Width);
     optionsMenu.setItem(0, "Borders");
     optionsMenu.setItem(1, "Sound FX");
     optionsMenu.setItem(2, "Background Music");
     optionsMenu.setItem(3, "Moving Score");
     optionsMenu.setItem(4, "Back");
 }
 private void setupMenu()
 {
     mainMenu = new MenuItemManager(5, fontArcade, GraphicsDevice.Viewport.Height, GraphicsDevice.Viewport.Width);
     mainMenu.setItem(0, "Play");
     mainMenu.setItem(1, "Highscores");
     mainMenu.setItem(2, "Options");
     mainMenu.setItem(3, "Credits");
     mainMenu.setItem(4, "Exit");
 }