From 644e337cf6b6b6e89bcffdebd6a40bfd4268d4ac Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Mon, 7 Nov 2016 20:57:33 +0800 Subject: [PATCH] Add a list for play history. --- osu.Game/Overlays/MusicController.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index 26f335750e..43e8b73076 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -29,8 +29,12 @@ namespace osu.Game.Overlays private SpriteText title, artist; private Texture fallbackTexture; - private TrackManager trackManager; private List playList; + private List playHistory; + private int playListIndex; + private int playHistoryIndex; + + private TrackManager trackManager; private BeatmapDatabase database; private Bindable beatmapSource; private WorkingBeatmap current;