TagTool.Sounds.SoundInfo.ReadPathDefinitions C# (CSharp) Method

ReadPathDefinitions() private method

private ReadPathDefinitions ( EndianReader reader ) : void
reader TagTool.IO.EndianReader
return void
        private void ReadPathDefinitions(EndianReader reader)
        {
            int numPaths = reader.ReadInt32();
            Paths = new SoundPath[numPaths];
            for (int i = 0; i < numPaths; i++)
                Paths[i] = new SoundPath(reader);
        }