Ejemplo n.º 1
0
 public QuestStatus(IGame game, IQuestInPlay currentStage, IQuestCard previousStage, IQuestCard nextStage)
     : base(game)
 {
     this.CurrentStage  = currentStage;
     this.PreviousStage = previousStage;
     this.nextStage     = nextStage;
 }
Ejemplo n.º 2
0
 public QuestStatus(IGame game, IQuestInPlay currentStage, IQuestCard previousStage, IQuestCard nextStage)
     : base(game)
 {
     this.CurrentStage = currentStage;
     this.PreviousStage = previousStage;
     this.nextStage = nextStage;
 }
        public QuestCardInPlayViewModel(Dispatcher dispatcher, IQuestInPlay questInPlay)
            : base(dispatcher, questInPlay.Card)
        {
            if (questInPlay == null)
                throw new ArgumentNullException("questInPlay");

            this.questInPlay = questInPlay;
        }
Ejemplo n.º 4
0
        public QuestCardInPlayViewModel(Dispatcher dispatcher, IQuestInPlay questInPlay)
            : base(dispatcher, questInPlay.Card)
        {
            if (questInPlay == null)
            {
                throw new ArgumentNullException("questInPlay");
            }

            this.questInPlay = questInPlay;
        }