public void read(EndianBinaryReader r) { BPMs = new BpmSection(); BPMs.read(r); Phrases = new PhraseSection(); Phrases.read(r); Chords = new ChordSection(); Chords.read(r); ChordNotes = new ChordNotesSection(); ChordNotes.read(r); Vocals = new VocalSection(); Vocals.read(r); SymbolsHeader = new SymbolsHeaderSection(); SymbolsHeader.read(r); SymbolsTexture = new SymbolsTextureSection(); SymbolsTexture.read(r); SymbolsDefinition = new SymbolDefinitionSection(); SymbolsDefinition.read(r); PhraseIterations = new PhraseIterationSection(); PhraseIterations.read(r); PhraseExtraInfo = new PhraseExtraInfoByLevelSection(); PhraseExtraInfo.read(r); NLD = new NLinkedDifficultySection(); NLD.read(r); Actions = new ActionSection(); Actions.read(r); Events = new EventSection(); Events.read(r); Tones = new ToneSection(); Tones.read(r); DNAs = new DnaSection(); DNAs.read(r); Sections = new SectionSection(); Sections.read(r); Arrangements = new ArrangementSection(); Arrangements.read(r); Metadata = new Metadata(); Metadata.read(r); }
public void read(BinaryReader r) { this.BPMs = new BpmSection(); this.BPMs.read(r); this.Phrases = new PhraseSection(); this.Phrases.read(r); this.Chords = new ChordSection(); this.Chords.read(r); this.ChordNotes = new ChordNotesSection(); this.ChordNotes.read(r); this.Vocals = new VocalSection(); this.Vocals.read(r); this.SymbolsHeader = new SymbolsHeaderSection(); this.SymbolsHeader.read(r); this.SymbolsTexture = new SymbolsTextureSection(); this.SymbolsTexture.read(r); this.SymbolsDefinition = new SymbolDefinitionSection(); this.SymbolsDefinition.read(r); this.PhraseIterations = new PhraseIterationSection(); this.PhraseIterations.read(r); this.PhraseExtraInfo = new PhraseExtraInfoByLevelSection(); this.PhraseExtraInfo.read(r); this.NLD = new NLinkedDifficultySection(); this.NLD.read(r); this.Actions = new ActionSection(); this.Actions.read(r); this.Events = new EventSection(); this.Events.read(r); this.Tones = new ToneSection(); this.Tones.read(r); this.DNAs = new DnaSection(); this.DNAs.read(r); this.Sections = new SectionSection(); this.Sections.read(r); this.Arrangements = new ArrangementSection(); this.Arrangements.read(r); this.Metadata = new Metadata(); this.Metadata.read(r); }