package letzplay.core; import java.util.ArrayList; import java.util.List; public class Output { public List quests = new ArrayList<>(); public int lvl; public float exp; public Output(List quests, int lvl, float exp) { this.quests.addAll(quests); this.lvl = lvl; this.exp = exp; } }