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; }
public QuestElementModule(QuestCaseModule questCase, QuestConditionModule condition) { this.questCase = questCase; this.condition = condition; }