Core/src/main/java/eu/univento/core/api/quest/QuestRequirement.java

17 lines
319 B
Java
Raw Normal View History

2018-01-15 12:25:45 +01:00
/*
* Copyright (c) 2018 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.api.quest;
import lombok.Getter;
public class QuestRequirement {
@Getter private QuestRequirementType type;
public QuestRequirement(Quest quest) {
}
}