Ejemplo n.º 1
0
 public AllQuestsView(QuestManager questManager, HudList hudList, QuestFlagRepository questFlagRepository, PlayerData playerData, Action <Quest> thing, HudView questView) : base(hudList)
 {
     _questManager        = questManager;
     _questFlagRepository = questFlagRepository;
     _playerData          = playerData;
     _questClickCallback  = thing;
 }
Ejemplo n.º 2
0
 public FavoriteQuestsView(QuestManager questManager, HudList hudList, QuestFlagRepository questFlagRepository, PlayerData playerData, Action <Quest> thing, HudView hudView) : base(hudList)
 {
     _questManager        = questManager;
     _questFlagRepository = questFlagRepository;
     _playerData          = playerData;
     _questClickCallback  = thing;
     _hudView             = hudView;
     _showCompleted       = (HudCheckBox)_hudView["QuestFavoritesShowCompleted"];
 }