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

20 lines
318 B
Java
Raw Normal View History

2016-08-19 21:47:15 +02:00
package com.rubenvandeven.emotionhero;
import java.util.Date;
/**
* Created by ruben on 19/08/16.
*/
public class Score {
int lvl_id;
2016-08-19 21:47:15 +02:00
float score;
Date time;
public Score(int lvl_id, float score) {
this.lvl_id = lvl_id;
2016-08-19 21:47:15 +02:00
this.score = score;
this.time = new Date();
}
}