TagTool.Sounds.SoundInfo.ReadStateGroups C# (CSharp) Method

ReadStateGroups() private method

private ReadStateGroups ( EndianReader reader ) : void
reader TagTool.IO.EndianReader
return void
        private void ReadStateGroups(EndianReader reader)
        {
            int numStateGroups = reader.ReadInt32();
            StateGroups = new StateGroup[numStateGroups];
            for (int i = 0; i < numStateGroups; i++)
                StateGroups[i] = new StateGroup(reader);
        }