Ejemplo n.º 1
0
        ////////////////

        private ModRecommendsMenuContext() : base(true, false)
        {
            this.RecommendsList = new UIRecommendsList(this, 198f, 132f, 202f, 40f);

            this.DownloadButton          = new UIMenuButton(UITheme.Vanilla, "Download All", 198f, 26f, 202f, 172f);
            this.DownloadButton.OnClick += (evt, elem) => {
                MainMenuHelpers.LoadMenuModDownloads("Recommended", (List <string>) this.RecommendsList.GetModNames());
            };
        }
 public static void PromptModDownloads(string packTitle, List <string> modNames)
 {
     MainMenuHelpers.LoadMenuModDownloads(packTitle, modNames);
 }