package com.rubenvandeven.emotionhero; import java.util.Date; /** * Created by ruben on 19/08/16. */ public class Highscore { String level; float score; Date time; public Highscore(String level, float score) { this.level = level; this.score = score; this.time = new Date(); } }