Britbot
void Britbot.ZoneConfigs.AddGroup ( int  count) [inline]

Definition at line 20 of file ZoneConfigs.cs.

        {
            if (this.Capacity >= count)
            {
                this.Capacity -= count;
                this.Groups.Add(count);
            }
            else
            {
                throw new Exception("Not enough space in the zone");
            }
        }