Exemple #1
0
 public static void ItemCleared(IQuestID itemID)
 {
     if (EndEvent != null)
     {
         EndEvent(itemID);
     }
 }
 void ItemCollected(IQuestID items)
 {
     if (items.ID == this.EnemyID)
     {
         this.CurrentAmount++;
         Evaluate();
     }
 }