letzplay/src/main/java/letzplay/core/Output.java

17 lines
344 B
Java
Raw Normal View History

2021-04-11 14:54:28 +02:00
package letzplay.core;
import java.util.ArrayList;
import java.util.List;
public class Output {
public List<Quest> quests = new ArrayList<>();
public int lvl;
public float exp;
public Output(List<Quest> quests, int lvl, float exp) {
this.quests.addAll(quests);
this.lvl = lvl;
this.exp = exp;
}
}