public KillObjective( int amount, Type[] types, TextDefinition name, QuestArea area )
		{
			m_DesiredAmount = amount;
			m_AcceptedTypes = types;
			m_Name = name;
			m_Area = area;
		}
		public TimedKillObjective( TimeSpan duration, int amount, Type[] types, TextDefinition name, QuestArea area )
			: base( amount, types, name, area )
		{
			m_Duration = duration;
		}
Exemple #3
0
		public EscortObjective( QuestArea destination )
		{
			m_Destination = destination;
		}