returns the amount of rings in the formation for given amount of pirates
- Parameters:
-
| pirateNum | amount 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);
}