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