package eu.lestard.snakefx.highscore; import java.util.List; /** * Interface for Data Access Object implementations to handle the persistence of * {@link HighScoreEntry} instances. * * @author manuel.mauky * */ public interface HighscoreDao { void persist(List<HighScoreEntry> highscores); List<HighScoreEntry> load(); }