Aura.Channel.World.Quests.QuestObjectiveKill.Check C# (CSharp) Метод

Check() публичный Метод

Returns true if creature matches one of the race types.
public Check ( Creature killedCreature ) : bool
killedCreature Aura.Channel.World.Entities.Creature
Результат bool
		public bool Check(Creature killedCreature)
		{
			return this.RaceTypes.Any(type => killedCreature.RaceData.HasTag(type));
		}
	}
QuestObjectiveKill