TagTool.Sounds.SoundInfo.ReadStateGroups C# (CSharp) Метод

ReadStateGroups() приватный Метод

private ReadStateGroups ( EndianReader reader ) : void
reader TagTool.IO.EndianReader
Результат 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);
        }