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

ReadPathPoints() private method

private ReadPathPoints ( EndianReader reader ) : void
reader TagTool.IO.EndianReader
return void
        private void ReadPathPoints(EndianReader reader)
        {
            int numPathPoints = reader.ReadInt32();
            PathPoints = new SoundPathPoint[numPathPoints];
            for (int i = 0; i < numPathPoints; i++)
                PathPoints[i] = new SoundPathPoint(reader);
        }