Example #1
0
        public static List <string> getList()
        {
            string str = "";

            if (Settings.EnableDLC && DLC1SessionUpgrader.HasDLC1Installed)
            {
                str = str + "\r\n" + Utils.readEntireFile("Content/DLC/DLCBootList.txt");
            }
            return(BootLoadList.getListFromData(str + Utils.readEntireFile("Content/Computers/BootLoadList.txt")));
        }
Example #2
0
 public static List <string> getAdventureList()
 {
     return(BootLoadList.getListFromData(Utils.readEntireFile("Content/AdventureNetwork/AdventureLoadList.txt")));
 }
Example #3
0
 public static List <string> getDemoList()
 {
     return(BootLoadList.getListFromData(Utils.readEntireFile("Content/Computers/DemoLoadList.txt")));
 }
Example #4
0
 public static List <string> getDLCList()
 {
     return(BootLoadList.getListFromData(Utils.readEntireFile("Content/DLC/DLCBootList.txt")));
 }