Britbot
static int Britbot.Group.GetRingCount ( int  pirateNum) [inline, static]

returns the amount of rings in the formation for given amount of pirates

Parameters:
pirateNumamount of pirates in formation
Returns:
the amount of rings in the formation

Definition at line 645 of file Group.cs.

        {
            return (int) Math.Ceiling((decimal) (pirateNum - 1) / 4);
        }