14 lines
899 B
Java
14 lines
899 B
Java
package ch.gtache.elderscrollslegends.client;
|
|
|
|
import java.util.List;
|
|
|
|
public record JSONChapterEvent(JSONResourceId ResourceId, boolean Production, List<JSONScenario> GatedScenarios,
|
|
JSONPosition Position, JSONModal IntroModal, JSONModal EndingModal,
|
|
String CoinImage, String RewardsBundleKey, String MasterRewardsBundleKey,
|
|
int NormalCardRewardUiCount, int MasterCardRewardUiCount,
|
|
String IntroFirstChoiceRewardsBundleKey, String IntroFirstChoiceMasterRewardsBundleKey,
|
|
String IntroSecondChoiceRewardsBundleKey, String IntroSecondChoiceMasterRewardsBundleKey,
|
|
boolean IsHiddenFromMap, List<JSONRequiredOutcome> RequiredOutcomes,
|
|
List<JSONRequiredOutcome> AltRequiredOutcomes) {
|
|
}
|