Example #1
0
        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);
            }
        }
Example #2
0
 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);
 }