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); } }
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); }