예제 #1
0
        public static void Show()
        {
            WindowBuilderSplit w = WindowBuilderSplit.Create("Load the game", "Load");

            //add files
            foreach (LoadSaveInfo info in LoadSaveMgmt.GetAllSaves())
            {
                w.Add(new LoadWindowSplitElement(info, w));
            }

            w.Finish();
        }
예제 #2
0
        public static void Show()
        {
            WindowBuilderSplit w = WindowBuilderSplit.Create("Save the game", "Overwrite");

            UIHelper.CreateButton("Create new save", w.buttonPanel.transform, () =>
            {
                w.Add(new SaveWindowSplitElement(LoadSaveMgmt.CreateNewSave(), w));
            });

            //add files
            foreach (LoadSaveInfo info in LoadSaveMgmt.GetAllSaves())
            {
                w.Add(new SaveWindowSplitElement(info, w));
            }

            w.Finish();
        }