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

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

public QuestObjectiveCollect ( int itemId, int amount ) : System.Linq
itemId int
amount int
Результат System.Linq
		public QuestObjectiveCollect(int itemId, int amount)
			: base(amount)
		{
			this.ItemId = itemId;
			this.Amount = amount;

			this.MetaData.SetInt("TARGETITEM", itemId);
			this.MetaData.SetInt("TARGETCOUNT", amount);
			this.MetaData.SetInt("QO_FLAG", 1);
		}
	}
QuestObjectiveCollect