Represents a state group in a SoundInfo object.
示例#1
0
        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);
            }
        }
示例#2
0
 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);
 }