Objects stop on song end.

Added time and song name.
Changed WHITE to ORANGE.
This commit is contained in:
2015-06-11 10:42:05 +02:00
parent 44cc0e38d5
commit 136d9fe2cf
5 changed files with 49 additions and 6 deletions
+5
View File
@@ -61,6 +61,11 @@ public class SongInstance {
return b;
}
public long getEndTime()
{
return objects.get(objects.size()-1).getTime();
}
public List<ButtonInstance> getButtonsBetween(long oldProgress, long progress) {
List<ButtonInstance> b = new ArrayList<ButtonInstance>();