TagTool.Sounds.SoundInfo.ReadPathPoints C# (CSharp) 메소드

ReadPathPoints() 개인적인 메소드

private ReadPathPoints ( EndianReader reader ) : void
reader TagTool.IO.EndianReader
리턴 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);
        }