Gruppe22.Backend.Player.UpdateQuests C# (CSharp) Метод

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

This method update the status of all player quests and grants the rewards
public UpdateQuests ( ) : void
Результат void
        public void UpdateQuests()
        {
            foreach (Quest quest in _quests)
            {
                if (quest.Completed(this))
                {
                    ;
                }
            }
        }