Aura.Channel.World.Quests.QuestRewardGroup.HasRewardsFor C# (CSharp) Méthode

HasRewardsFor() public méthode

Returns true if group contains rewards for result.
public HasRewardsFor ( QuestResult result ) : bool
result QuestResult
Résultat bool
		public bool HasRewardsFor(QuestResult result)
		{
			return this.Rewards.Any(a => a.Result == result);
		}
	}