예제 #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);
     }));
 }
예제 #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);
     });
 }