Esempio n. 1
0
 private static bool HasValidCandidates(Lot lot, Sim actor, WeatherStone.SummonWeatherType type)
 {
     return(lot.DoesSimExist(delegate(Sim s)
     {
         return (s != actor) && IsValidCandidate(s, actor, type);
     }));
 }
Esempio n. 2
0
 private static bool HasValidCandidates(Lot lot, Sim actor, WeatherStone.SummonWeatherType type)
 {
     return lot.DoesSimExist(delegate(Sim s)
     {
         return (s != actor) && IsValidCandidate(s, actor, type);
     });
 }