Britbot
Britbot.Group.Group ( int[]  piratesId) [inline]

Creates a new group with the given pirates.

Parameters:
piratesIdthe pirates indexes to add to this group

Definition at line 88 of file Group.cs.

            : this()
        {
            foreach (int index in piratesId)
                this.AddPirate(index);

            //generate forming (getting into structure) instructions
            this.GenerateFormationInstructions();
        }