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

20 lines
318 B
Java

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