示例#1
0
 public QuestDefinitionModule(int id, List <QuestTypeModule> types, QuestCaseModule rootCase, List <LootModule> rewards, List <QuestIconModule> icons)
 {
     this.id       = id;
     this.types    = types;
     this.rootCase = rootCase;
     this.rewards  = rewards;
     this.icons    = icons;
 }
示例#2
0
 public QuestElementModule(QuestCaseModule questCase, QuestConditionModule condition)
 {
     this.questCase = questCase;
     this.condition = condition;
 }