Britbot

Creates a new instance of the EnemyGroup class.

Definition at line 65 of file EnemyGroup.cs.

        {
            this.Id = EnemyGroup._idCount++;
            this.EnemyPirates = new List<int>();
            this.PrevLoc = new Location(0, 0);
            this._lastDirections = new Queue<Direction>();
            this._lastMaxFightPower = new Queue<int>();
        }