ME3Explorer.Texplorer2.UpdateTOCs C# (CSharp) Method

UpdateTOCs() public static method

public static UpdateTOCs ( int WhichGame = 3 ) : void
WhichGame int
return void
        public static void UpdateTOCs(int WhichGame = 3)
        {
            //SirCxyrtyx: ME1+2 do not have TOCs
            if (WhichGame == 3)
            {
                DebugOutput.PrintLn("Updating TOCs...");
                AutoTOC.GenerateAllTOCs();
                DebugOutput.PrintLn("TOCs updated.");
            }
        }
Texplorer2