Пример #1
0
        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);
            }
        }
Пример #2
0
 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);
 }