Ejemplo n.º 1
0
 void ClaimCell(Map_Cell cell)
 {
     if (claimCount >= claimLimit)
     {
         cell.ChangeCell(2);
         claimCount = 0;
     }
     else
     {
         claimCount++;
     }
 }