/* * 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 QuestAction { @Getter private boolean done; public QuestAction(Quest quest, String name) { } }