emotionhero/app/src/main/java/com/rubenvandeven/emotionhero/Highscore.java

20 lines
328 B
Java

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();
}
}