Пример #1
0
 public static bool IsSameSkillAs(this SkillResult skillResult, SkillResult other, AggregationType type)
 {
     return(skillResult.AggregatedSkillName(type) == other.AggregatedSkillName(type) &&
            skillResult.IsHeal == other.IsHeal);
 }
Пример #2
0
 public static bool IsSameSkillAs(this SkillResult skillResult, AggregatedSkillResult aggregatedSkillResult)
 {
     return(skillResult.AggregatedSkillName(aggregatedSkillResult.AggregationType) ==
            aggregatedSkillResult.DisplayName &&
            skillResult.IsHeal == aggregatedSkillResult.IsHeal);
 }
Пример #3
0
 public static bool IsSameSkillAs(this SkillResult skillResult, SkillResult other, AggregationType type)
 {
     return skillResult.AggregatedSkillName(type) == other.AggregatedSkillName(type) &&
            skillResult.IsHeal == other.IsHeal;
 }