10 lines
263 B
Java
10 lines
263 B
Java
package games.dmg.spigotquestboard;
|
|
|
|
import java.io.IOException;
|
|
import java.time.Instant;
|
|
import org.bukkit.entity.Player;
|
|
|
|
interface QuestCompletionGateway {
|
|
QuestCompletion complete(Player player, String questId, Instant completedAt) throws IOException;
|
|
}
|