Ejemplo n.º 1
0
 private void StartGrowing()
 {
     // Find crops whose requirements are all met
     foreach (Hex hex in cropHexes)
     {
         Crop crop = hex.crop;
         if (crop.AreAllResourcesMet())
         {
             crop.SetTokenLayer(TokenDisplayer.TokenLayer.Invisible);
             growingCrops.Add(crop);
         }
     }
 }