KFreonLib.Textures.TreeTexInfo.ReorderCheck C# (CSharp) Method

ReorderCheck() private method

private ReorderCheck ( string pathBIOGame ) : void
pathBIOGame string
return void
        internal void ReorderCheck(string pathBIOGame)
        {
            if (!ValidFirstPCC && GameVersion == 2)
            {
                ValidFirstPCC = KFreonLib.PCCObjects.Misc.ReorderFiles(ref Files, ref ExpIDs, pathBIOGame, GameVersion);

                
                OriginalFiles = new List<string>(Files);

                if (ExpIDs == null)
                    ExpIDs = new List<int>();

                
                OriginalExpIDs = new List<int>(ExpIDs);
            }
        }